Compare commits
37 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6722938ae6 | ||
|
|
9f720388ef | ||
|
|
e7b3c48ff4 | ||
|
|
0dfd4d014d | ||
|
|
ce0dc976a8 | ||
|
|
61418a1d8d | ||
|
|
1159d972a8 | ||
|
|
b6d1720fe6 | ||
|
|
dc30f4f3c9 | ||
|
|
e77edfd5d3 | ||
|
|
e848675d63 | ||
|
|
5e2d44b423 | ||
|
|
9dfb52a145 | ||
|
|
f4291421b5 | ||
|
|
28fdbc2281 | ||
|
|
2f74c87d0b | ||
|
|
dcea5ccd89 | ||
|
|
bfbc87817f | ||
|
|
a2e031326e | ||
|
|
ec92e85c8d | ||
|
|
4b642f419b | ||
|
|
75cd3895d9 | ||
|
|
d3b38b27d1 | ||
|
|
398a5532dc | ||
|
|
70b577f5ac | ||
|
|
0d71146a2c | ||
|
|
a53f0711fb | ||
|
|
8a7db6bf97 | ||
|
|
f78777b284 | ||
|
|
3a534c7512 | ||
|
|
2b7d3c0a8a | ||
|
|
7fea358410 | ||
|
|
f65c1ef7d8 | ||
|
|
9e4496dc03 | ||
|
|
235772a54b | ||
|
|
784e80db5b | ||
|
|
0442ece9ba |
23
.github/workflows/build-docker-image.yml
vendored
23
.github/workflows/build-docker-image.yml
vendored
@@ -11,24 +11,43 @@ jobs:
|
||||
- name: checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Docker metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
ghcr.io/${{ github.repository }}
|
||||
${{ github.repository }}
|
||||
tags: |
|
||||
type=semver,pattern={{version}},prefix=v
|
||||
type=semver,pattern={{major}}.{{minor}},prefix=v
|
||||
type=semver,pattern={{major}},prefix=v
|
||||
|
||||
- name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v2
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
|
||||
- name: Login to Docker registry
|
||||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
|
||||
- name: Login to GitHub Container Registry
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ghcr.io
|
||||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
platforms: linux/amd64,linux/arm64
|
||||
push: true
|
||||
tags: stonith404/pingvin-share:latest,stonith404/pingvin-share:${{ github.ref_name }}
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
cache-from: type=gha
|
||||
cache-to: type=gha,mode=max
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -44,6 +44,7 @@ yarn-error.log*
|
||||
/docs/build/
|
||||
/docs/.docusaurus
|
||||
/docs/.cache-loader
|
||||
/config.yaml
|
||||
|
||||
# Jetbrains specific (webstorm)
|
||||
.idea/**/**
|
||||
|
||||
52
CHANGELOG.md
52
CHANGELOG.md
@@ -1,3 +1,55 @@
|
||||
## [1.10.2](https://github.com/stonith404/pingvin-share/compare/v1.10.1...v1.10.2) (2025-03-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* don't throw error if group claim is missing ([e7b3c48](https://github.com/stonith404/pingvin-share/commit/e7b3c48ff48bd7cfb206c32ea97862b757057573))
|
||||
|
||||
## [1.10.1](https://github.com/stonith404/pingvin-share/compare/v1.10.0...v1.10.1) (2025-02-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* admin property can't be set if OAuth2 user email doesn't match actual user's email ([1159d97](https://github.com/stonith404/pingvin-share/commit/1159d972a8c32a0d6bf53d161c2fc09e6f8dfb28))
|
||||
* type error when trying to run the seed command ([b6d1720](https://github.com/stonith404/pingvin-share/commit/b6d1720fe637497ad624c6cdc40058b1b0f0c74c))
|
||||
|
||||
## [1.10.0](https://github.com/stonith404/pingvin-share/compare/v1.9.1...v1.10.0) (2025-02-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add ability to configure application with a config file ([#740](https://github.com/stonith404/pingvin-share/issues/740)) ([9dfb52a](https://github.com/stonith404/pingvin-share/commit/9dfb52a14587065dacd9fcd2bb2efa1b458880a5))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* confusing config configuration description for session duration ([28fdbc2](https://github.com/stonith404/pingvin-share/commit/28fdbc22814260040c78e27a62d86b84df83751f))
|
||||
* page crash if new release check fails ([e848675](https://github.com/stonith404/pingvin-share/commit/e848675d634a08efe3aac4e02d98136c36b36bfc))
|
||||
* smtp password gets autofilled in Firefox ([f429142](https://github.com/stonith404/pingvin-share/commit/f4291421b5531b0eeae5bcca9139f80c3cd43b4b))
|
||||
|
||||
## [1.9.1](https://github.com/stonith404/pingvin-share/compare/v1.9.0...v1.9.1) (2025-02-14)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* page doesn't reload on user deletion ([a2e0313](https://github.com/stonith404/pingvin-share/commit/a2e031326e51f7663c2d864dd0d08a65f180318e))
|
||||
* redirection to the OIDC end session endpoint ([ec92e85](https://github.com/stonith404/pingvin-share/commit/ec92e85c8d294b30117ad2599ad03b0bbb04574c))
|
||||
|
||||
## [1.9.0](https://github.com/stonith404/pingvin-share/compare/v1.8.2...v1.9.0) (2025-02-12)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* ability to add email to recipients list by clicking enter ([#760](https://github.com/stonith404/pingvin-share/issues/760)) ([70b577f](https://github.com/stonith404/pingvin-share/commit/70b577f5ac8385cfc6a22ffee4c7e317e3cc6403))
|
||||
|
||||
## [1.8.2](https://github.com/stonith404/pingvin-share/compare/v1.8.1...v1.8.2) (2025-01-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* normal share gets attached to previously visited reverse share ([3a534c7](https://github.com/stonith404/pingvin-share/commit/3a534c7512ef82f3fa982f80e364f53c957306a0))
|
||||
* wrong TOTP validation for password ([2b7d3c0](https://github.com/stonith404/pingvin-share/commit/2b7d3c0a8a3e527fc1f7f86795731d5ac77eda49))
|
||||
|
||||
## [1.8.1](https://github.com/stonith404/pingvin-share/compare/v1.8.0...v1.8.1) (2025-01-04)
|
||||
|
||||
|
||||
|
||||
@@ -50,11 +50,12 @@ COPY --from=backend-builder /opt/app/node_modules ./node_modules
|
||||
COPY --from=backend-builder /opt/app/dist ./dist
|
||||
COPY --from=backend-builder /opt/app/prisma ./prisma
|
||||
COPY --from=backend-builder /opt/app/package.json ./
|
||||
COPY --from=backend-builder /opt/app/tsconfig.json ./
|
||||
|
||||
WORKDIR /opt/app
|
||||
|
||||
COPY ./reverse-proxy /opt/app/reverse-proxy
|
||||
COPY ./scripts ./scripts
|
||||
COPY ./scripts/docker ./scripts/docker
|
||||
|
||||
EXPOSE 3000
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@ Pingvin Share is a self-hosted file sharing platform and an alternative for WeTr
|
||||
- Reverse shares
|
||||
- OIDC and LDAP authentication
|
||||
- Integration with ClamAV for security scans
|
||||
- Different file providers: local storage and S3
|
||||
|
||||
## 🐧 Get to know Pingvin Share
|
||||
|
||||
|
||||
4533
backend/package-lock.json
generated
4533
backend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pingvin-share-backend",
|
||||
"version": "1.8.1",
|
||||
"version": "1.10.2",
|
||||
"scripts": {
|
||||
"build": "nest build",
|
||||
"dev": "cross-env NODE_ENV=development nest start --watch",
|
||||
@@ -13,7 +13,7 @@
|
||||
"seed": "ts-node prisma/seed/config.seed.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@aws-sdk/client-s3": "^3.679.0",
|
||||
"@aws-sdk/client-s3": "^3.758.0",
|
||||
"@nestjs/cache-manager": "^2.2.2",
|
||||
"@nestjs/common": "^10.4.3",
|
||||
"@nestjs/config": "^3.2.3",
|
||||
@@ -24,7 +24,7 @@
|
||||
"@nestjs/schedule": "^4.1.1",
|
||||
"@nestjs/swagger": "^7.4.2",
|
||||
"@nestjs/throttler": "^6.2.1",
|
||||
"@prisma/client": "^5.19.1",
|
||||
"@prisma/client": "^6.4.1",
|
||||
"@types/jmespath": "^0.15.2",
|
||||
"archiver": "^7.0.1",
|
||||
"argon2": "^0.41.1",
|
||||
@@ -50,7 +50,8 @@
|
||||
"rimraf": "^6.0.1",
|
||||
"rxjs": "^7.8.1",
|
||||
"sharp": "^0.33.5",
|
||||
"ts-node": "^10.9.2"
|
||||
"ts-node": "^10.9.2",
|
||||
"yaml": "^2.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@nestjs/cli": "^10.4.5",
|
||||
@@ -78,7 +79,7 @@
|
||||
"eslint-plugin-prettier": "^5.2.1",
|
||||
"newman": "^6.2.1",
|
||||
"prettier": "^3.3.3",
|
||||
"prisma": "^5.19.1",
|
||||
"prisma": "^6.4.1",
|
||||
"source-map-support": "^0.5.21",
|
||||
"ts-loader": "^9.5.1",
|
||||
"tsconfig-paths": "4.2.0",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Prisma, PrismaClient } from "@prisma/client";
|
||||
import * as crypto from "crypto";
|
||||
|
||||
const configVariables: ConfigVariables = {
|
||||
export const configVariables = {
|
||||
internal: {
|
||||
jwtSecret: {
|
||||
type: "string",
|
||||
@@ -181,12 +181,12 @@ const configVariables: ConfigVariables = {
|
||||
},
|
||||
searchQuery: {
|
||||
type: "string",
|
||||
defaultValue: ""
|
||||
defaultValue: "",
|
||||
},
|
||||
|
||||
adminGroups: {
|
||||
type: "string",
|
||||
defaultValue: ""
|
||||
defaultValue: "",
|
||||
},
|
||||
|
||||
fieldNameMemberOf: {
|
||||
@@ -196,18 +196,18 @@ const configVariables: ConfigVariables = {
|
||||
fieldNameEmail: {
|
||||
type: "string",
|
||||
defaultValue: "userPrincipalName",
|
||||
}
|
||||
},
|
||||
},
|
||||
oauth: {
|
||||
"allowRegistration": {
|
||||
allowRegistration: {
|
||||
type: "boolean",
|
||||
defaultValue: "true",
|
||||
},
|
||||
"ignoreTotp": {
|
||||
ignoreTotp: {
|
||||
type: "boolean",
|
||||
defaultValue: "true",
|
||||
},
|
||||
"disablePassword": {
|
||||
disablePassword: {
|
||||
type: "boolean",
|
||||
defaultValue: "false",
|
||||
secret: false,
|
||||
@@ -376,7 +376,22 @@ const configVariables: ConfigVariables = {
|
||||
defaultValue: "",
|
||||
secret: false,
|
||||
},
|
||||
}
|
||||
},
|
||||
} satisfies ConfigVariables;
|
||||
|
||||
export type YamlConfig = {
|
||||
[Category in keyof typeof configVariables]: {
|
||||
[Key in keyof (typeof configVariables)[Category]]: string;
|
||||
};
|
||||
} & {
|
||||
initUser: {
|
||||
enabled: string;
|
||||
username: string;
|
||||
email: string;
|
||||
password: string;
|
||||
isAdmin: boolean;
|
||||
ldapDN: string;
|
||||
};
|
||||
};
|
||||
|
||||
type ConfigVariables = {
|
||||
@@ -433,7 +448,7 @@ async function migrateConfigVariables() {
|
||||
for (const existingConfigVariable of existingConfigVariables) {
|
||||
const configVariable =
|
||||
configVariables[existingConfigVariable.category]?.[
|
||||
existingConfigVariable.name
|
||||
existingConfigVariable.name
|
||||
];
|
||||
|
||||
// Delete the config variable if it doesn't exist in the seed
|
||||
|
||||
@@ -269,10 +269,7 @@ export class AuthService {
|
||||
signOutFromProviderSupportedAndActivated
|
||||
) {
|
||||
const configuration = await provider.getConfiguration();
|
||||
if (
|
||||
configuration.frontchannel_logout_supported &&
|
||||
URL.canParse(configuration.end_session_endpoint)
|
||||
) {
|
||||
if (URL.canParse(configuration.end_session_endpoint)) {
|
||||
const redirectURI = new URL(configuration.end_session_endpoint);
|
||||
redirectURI.searchParams.append(
|
||||
"post_logout_redirect_uri",
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
import { PickType } from "@nestjs/swagger";
|
||||
import { UserDTO } from "src/user/dto/user.dto";
|
||||
import { IsString } from "class-validator";
|
||||
|
||||
export class EnableTotpDTO extends PickType(UserDTO, ["password"] as const) {}
|
||||
export class EnableTotpDTO {
|
||||
@IsString()
|
||||
password: string;
|
||||
}
|
||||
|
||||
@@ -2,12 +2,17 @@ import {
|
||||
BadRequestException,
|
||||
Inject,
|
||||
Injectable,
|
||||
Logger,
|
||||
NotFoundException,
|
||||
} from "@nestjs/common";
|
||||
import { Config } from "@prisma/client";
|
||||
import * as argon from "argon2";
|
||||
import { EventEmitter } from "events";
|
||||
import * as fs from "fs";
|
||||
import { PrismaService } from "src/prisma/prisma.service";
|
||||
import { stringToTimespan } from "src/utils/date.util";
|
||||
import { parse as yamlParse } from "yaml";
|
||||
import { YamlConfig } from "../../prisma/seed/config.seed";
|
||||
|
||||
/**
|
||||
* ConfigService extends EventEmitter to allow listening for config updates,
|
||||
@@ -15,6 +20,9 @@ import { stringToTimespan } from "src/utils/date.util";
|
||||
*/
|
||||
@Injectable()
|
||||
export class ConfigService extends EventEmitter {
|
||||
yamlConfig?: YamlConfig;
|
||||
logger = new Logger(ConfigService.name);
|
||||
|
||||
constructor(
|
||||
@Inject("CONFIG_VARIABLES") private configVariables: Config[],
|
||||
private prisma: PrismaService,
|
||||
@@ -22,6 +30,65 @@ export class ConfigService extends EventEmitter {
|
||||
super();
|
||||
}
|
||||
|
||||
async onModuleInit() {
|
||||
await this.loadYamlConfig();
|
||||
|
||||
if (this.yamlConfig) {
|
||||
await this.migrateInitUser();
|
||||
}
|
||||
}
|
||||
|
||||
private async loadYamlConfig() {
|
||||
let configFile: string = "";
|
||||
try {
|
||||
configFile = fs.readFileSync("../config.yaml", "utf8");
|
||||
} catch (e) {
|
||||
this.logger.log(
|
||||
"Config.yaml is not set. Falling back to UI configuration.",
|
||||
);
|
||||
}
|
||||
try {
|
||||
this.yamlConfig = yamlParse(configFile);
|
||||
if (this.yamlConfig) {
|
||||
for (const configVariable of this.configVariables) {
|
||||
const category = this.yamlConfig[configVariable.category];
|
||||
if (!category) continue;
|
||||
|
||||
configVariable.value = category[configVariable.name];
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
this.logger.error(
|
||||
"Failed to parse config.yaml. Falling back to UI configuration: ",
|
||||
e,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
private async migrateInitUser(): Promise<void> {
|
||||
if (!this.yamlConfig.initUser.enabled) return;
|
||||
|
||||
const userCount = await this.prisma.user.count({
|
||||
where: { isAdmin: true },
|
||||
});
|
||||
if (userCount === 1) {
|
||||
this.logger.log(
|
||||
"Skip initial user creation. Admin user is already existent.",
|
||||
);
|
||||
return;
|
||||
}
|
||||
await this.prisma.user.create({
|
||||
data: {
|
||||
email: this.yamlConfig.initUser.email,
|
||||
username: this.yamlConfig.initUser.username,
|
||||
password: this.yamlConfig.initUser.password
|
||||
? await argon.hash(this.yamlConfig.initUser.password)
|
||||
: null,
|
||||
isAdmin: this.yamlConfig.initUser.isAdmin,
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
get(key: `${string}.${string}`): any {
|
||||
const configVariable = this.configVariables.filter(
|
||||
(variable) => `${variable.category}.${variable.name}` == key,
|
||||
@@ -40,24 +107,22 @@ export class ConfigService extends EventEmitter {
|
||||
}
|
||||
|
||||
async getByCategory(category: string) {
|
||||
const configVariables = await this.prisma.config.findMany({
|
||||
orderBy: { order: "asc" },
|
||||
where: { category, locked: { equals: false } },
|
||||
});
|
||||
const configVariables = this.configVariables
|
||||
.filter((c) => !c.locked && category == c.category)
|
||||
.sort((c) => c.order);
|
||||
|
||||
return configVariables.map((variable) => {
|
||||
return {
|
||||
...variable,
|
||||
key: `${variable.category}.${variable.name}`,
|
||||
value: variable.value ?? variable.defaultValue,
|
||||
allowEdit: this.isEditAllowed(),
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
async list() {
|
||||
const configVariables = await this.prisma.config.findMany({
|
||||
where: { secret: { equals: false } },
|
||||
});
|
||||
const configVariables = this.configVariables.filter((c) => !c.secret);
|
||||
|
||||
return configVariables.map((variable) => {
|
||||
return {
|
||||
@@ -69,6 +134,11 @@ export class ConfigService extends EventEmitter {
|
||||
}
|
||||
|
||||
async updateMany(data: { key: string; value: string | number | boolean }[]) {
|
||||
if (!this.isEditAllowed())
|
||||
throw new BadRequestException(
|
||||
"You are only allowed to update config variables via the config.yaml file",
|
||||
);
|
||||
|
||||
const response: Config[] = [];
|
||||
|
||||
for (const variable of data) {
|
||||
@@ -79,6 +149,11 @@ export class ConfigService extends EventEmitter {
|
||||
}
|
||||
|
||||
async update(key: string, value: string | number | boolean) {
|
||||
if (!this.isEditAllowed())
|
||||
throw new BadRequestException(
|
||||
"You are only allowed to update config variables via the config.yaml file",
|
||||
);
|
||||
|
||||
const configVariable = await this.prisma.config.findUnique({
|
||||
where: {
|
||||
name_category: {
|
||||
@@ -143,4 +218,8 @@ export class ConfigService extends EventEmitter {
|
||||
throw new BadRequestException(validation.message);
|
||||
}
|
||||
}
|
||||
|
||||
isEditAllowed(): boolean {
|
||||
return this.yamlConfig === undefined || this.yamlConfig === null;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,6 +17,9 @@ export class AdminConfigDTO extends ConfigDTO {
|
||||
@Expose()
|
||||
obscured: boolean;
|
||||
|
||||
@Expose()
|
||||
allowEdit: boolean;
|
||||
|
||||
from(partial: Partial<AdminConfigDTO>) {
|
||||
return plainToClass(AdminConfigDTO, partial, {
|
||||
excludeExtraneousValues: true,
|
||||
|
||||
@@ -63,7 +63,7 @@ export class OAuthService {
|
||||
},
|
||||
});
|
||||
if (oauthUser) {
|
||||
await this.updateIsAdmin(user);
|
||||
await this.updateIsAdmin(oauthUser.userId, user.isAdmin);
|
||||
const updatedUser = await this.prisma.user.findFirst({
|
||||
where: {
|
||||
id: oauthUser.userId,
|
||||
@@ -170,7 +170,7 @@ export class OAuthService {
|
||||
userId: existingUser.id,
|
||||
},
|
||||
});
|
||||
await this.updateIsAdmin(user);
|
||||
await this.updateIsAdmin(existingUser.id, user.isAdmin);
|
||||
return this.auth.generateToken(existingUser, { idToken: user.idToken });
|
||||
}
|
||||
|
||||
@@ -196,15 +196,14 @@ export class OAuthService {
|
||||
return result;
|
||||
}
|
||||
|
||||
private async updateIsAdmin(user: OAuthSignInDto) {
|
||||
if ("isAdmin" in user)
|
||||
await this.prisma.user.update({
|
||||
where: {
|
||||
email: user.email,
|
||||
},
|
||||
data: {
|
||||
isAdmin: user.isAdmin,
|
||||
},
|
||||
});
|
||||
private async updateIsAdmin(userId: string, isAdmin?: boolean) {
|
||||
await this.prisma.user.update({
|
||||
where: {
|
||||
id: userId,
|
||||
},
|
||||
data: {
|
||||
isAdmin: isAdmin === true,
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
@@ -147,38 +147,33 @@ export abstract class GenericOidcProvider implements OAuthProvider<OidcToken> {
|
||||
|
||||
if (roleConfig?.path) {
|
||||
// A path to read roles from the token is configured
|
||||
let roles: string[] | null;
|
||||
let roles: string[] = [];
|
||||
try {
|
||||
roles = jmespath.search(idTokenData, roleConfig.path);
|
||||
} catch (e) {
|
||||
roles = null;
|
||||
}
|
||||
if (Array.isArray(roles)) {
|
||||
// Roles are found in the token
|
||||
if (
|
||||
roleConfig.generalAccess &&
|
||||
!roles.includes(roleConfig.generalAccess)
|
||||
) {
|
||||
// Role for general access is configured and the user does not have it
|
||||
this.logger.error(
|
||||
`User roles ${roles} do not include ${roleConfig.generalAccess}`,
|
||||
);
|
||||
throw new ErrorPageException("user_not_allowed");
|
||||
}
|
||||
if (roleConfig.adminAccess) {
|
||||
// Role for admin access is configured
|
||||
isAdmin = roles.includes(roleConfig.adminAccess);
|
||||
}
|
||||
} else {
|
||||
this.logger.error(
|
||||
this.logger.warn(
|
||||
`Roles not found at path ${roleConfig.path} in ID Token ${JSON.stringify(
|
||||
idTokenData,
|
||||
undefined,
|
||||
2,
|
||||
)}`,
|
||||
);
|
||||
}
|
||||
|
||||
if (
|
||||
roleConfig.generalAccess &&
|
||||
!roles.includes(roleConfig.generalAccess)
|
||||
) {
|
||||
// Role for general access is configured and the user does not have it
|
||||
this.logger.error(
|
||||
`User roles ${roles} do not include ${roleConfig.generalAccess}`,
|
||||
);
|
||||
throw new ErrorPageException("user_not_allowed");
|
||||
}
|
||||
if (roleConfig.adminAccess) {
|
||||
// Role for admin access is configured
|
||||
isAdmin = roles.includes(roleConfig.adminAccess);
|
||||
}
|
||||
}
|
||||
|
||||
if (!username) {
|
||||
|
||||
226
config.example.yaml
Normal file
226
config.example.yaml
Normal file
@@ -0,0 +1,226 @@
|
||||
#This configuration is pre-filled with the default values.
|
||||
#You can remove keys you don't want to set. If a key is missing, the value set in the UI will be used; if that is also unset, the default value applies.
|
||||
|
||||
general:
|
||||
#Name of the application
|
||||
appName: Pingvin Share
|
||||
#On which URL Pingvin Share is available
|
||||
appUrl: http://localhost:3000
|
||||
#Whether to set the secure flag on cookies. If enabled, the site will not function when accessed over HTTP.
|
||||
secureCookies: "false"
|
||||
#Whether to show the home page
|
||||
showHomePage: "true"
|
||||
#Time in hours after which a user must log in again (default: 3 months).
|
||||
sessionDuration: 3 months
|
||||
share:
|
||||
#Whether registration is allowed
|
||||
allowRegistration: "true"
|
||||
#Whether unauthenticated users can create shares
|
||||
allowUnauthenticatedShares: "false"
|
||||
#Maximum share expiration. Set to 0 to allow unlimited expiration.
|
||||
maxExpiration: 0 days
|
||||
#Default length for the generated ID of a share. This value is also used to generate links for reverse shares. A value below 8 is not considered secure.
|
||||
shareIdLength: "8"
|
||||
#Maximum share size
|
||||
maxSize: "1000000000"
|
||||
#Adjust the level to balance between file size and compression speed. Valid values range from 0 to 9, with 0 being no compression and 9 being maximum compression.
|
||||
zipCompressionLevel: "9"
|
||||
#Adjust the chunk size for your uploads to balance efficiency and reliability according to your internet connection. Smaller chunks can enhance success rates for unstable connections, while larger chunks make uploads faster for stable connections.
|
||||
chunkSize: "10000000"
|
||||
#The share creation modal automatically appears when a user selects files, eliminating the need to manually click the button.
|
||||
autoOpenShareModal: "false"
|
||||
email:
|
||||
#Whether to allow email sharing with recipients. Only enable this if SMTP is activated.
|
||||
enableShareEmailRecipients: "false"
|
||||
#Subject of the email which gets sent to the share recipients.
|
||||
shareRecipientsSubject: Files shared with you
|
||||
#Message which gets sent to the share recipients. Available variables:
|
||||
# {creator} - The username of the creator of the share
|
||||
# {creatorEmail} - The email of the creator of the share
|
||||
# {shareUrl} - The URL of the share
|
||||
# {desc} - The description of the share
|
||||
# {expires} - The expiration date of the share
|
||||
# These variables will be replaced with the actual value.
|
||||
shareRecipientsMessage: >-
|
||||
Hey!
|
||||
|
||||
|
||||
{creator} ({creatorEmail}) shared some files with you, view or download the
|
||||
files with this link: {shareUrl}
|
||||
|
||||
|
||||
The share will expire {expires}.
|
||||
|
||||
|
||||
Note: {desc}
|
||||
|
||||
|
||||
Shared securely with Pingvin Share 🐧
|
||||
#Subject of the sent email when someone created a share with your reverse share link.
|
||||
reverseShareSubject: Reverse share link used
|
||||
#Message which gets sent when someone created a share with your reverse share link. {shareUrl} will be replaced with the creator's name and the share URL.
|
||||
reverseShareMessage: |-
|
||||
Hey!
|
||||
|
||||
A share was just created with your reverse share link: {shareUrl}
|
||||
|
||||
Shared securely with Pingvin Share 🐧
|
||||
#Subject of the sent email when a user requests a password reset.
|
||||
resetPasswordSubject: Pingvin Share password reset
|
||||
#Message which gets sent when a user requests a password reset. {url} will be replaced with the reset password URL.
|
||||
resetPasswordMessage: >-
|
||||
Hey!
|
||||
|
||||
|
||||
You requested a password reset. Click this link to reset your password:
|
||||
{url}
|
||||
|
||||
The link expires in a hour.
|
||||
|
||||
|
||||
Pingvin Share 🐧
|
||||
#Subject of the sent email when an admin invites a user.
|
||||
inviteSubject: Pingvin Share invite
|
||||
#Message which gets sent when an admin invites a user. {url} will be replaced with the invite URL, {email} with the email and {password} with the users password.
|
||||
inviteMessage: >-
|
||||
Hey!
|
||||
|
||||
|
||||
You were invited to Pingvin Share. Click this link to accept the invite:
|
||||
{url}
|
||||
|
||||
|
||||
You can use the email "{email}" and the password "{password}" to sign in.
|
||||
|
||||
|
||||
Pingvin Share 🐧
|
||||
smtp:
|
||||
#Whether SMTP is enabled. Only set this to true if you entered the host, port, email, user and password of your SMTP server.
|
||||
enabled: "false"
|
||||
#Only set this to true if you need to trust self signed certificates.
|
||||
allowUnauthorizedCertificates: "false"
|
||||
#Host of the SMTP server
|
||||
host: ""
|
||||
#Port of the SMTP server
|
||||
port: "0"
|
||||
#Email address from wich the emails get sent
|
||||
email: ""
|
||||
#Username of the SMTP server
|
||||
username: ""
|
||||
#Password of the SMTP server
|
||||
password: ""
|
||||
ldap:
|
||||
#Use LDAP authentication for user login
|
||||
enabled: "false"
|
||||
#URL of the LDAP server
|
||||
url: ""
|
||||
#Default user used to perform the user search
|
||||
bindDn: ""
|
||||
#Password used to perform the user search
|
||||
bindPassword: ""
|
||||
#Base location, where the user search will be performed
|
||||
searchBase: ""
|
||||
#The user query will be used to search the 'User base' for the LDAP user. %username% can be used as the placeholder for the user given input.
|
||||
searchQuery: ""
|
||||
#Group required for administrative access.
|
||||
adminGroups: ""
|
||||
#LDAP attribute name for the groups, an user is a member of. This is used when checking for the admin group.
|
||||
fieldNameMemberOf: memberOf
|
||||
#LDAP attribute name for the email of an user.
|
||||
fieldNameEmail: userPrincipalName
|
||||
oauth:
|
||||
#Allow users to register via social login
|
||||
allowRegistration: "true"
|
||||
#Whether to ignore TOTP when user using social login
|
||||
ignoreTotp: "true"
|
||||
#Whether to disable password login
|
||||
#Make sure that an OAuth provider is properly configured before activating this configuration to avoid being locked out.
|
||||
disablePassword: "false"
|
||||
#Whether GitHub login is enabled
|
||||
github-enabled: "false"
|
||||
#Client ID of the GitHub OAuth app
|
||||
github-clientId: ""
|
||||
#Client secret of the GitHub OAuth app
|
||||
github-clientSecret: ""
|
||||
#Whether Google login is enabled
|
||||
google-enabled: "false"
|
||||
#Client ID of the Google OAuth app
|
||||
google-clientId: ""
|
||||
#Client secret of the Google OAuth app
|
||||
google-clientSecret: ""
|
||||
#Whether Microsoft login is enabled
|
||||
microsoft-enabled: "false"
|
||||
#Tenant ID of the Microsoft OAuth app
|
||||
#common: Users with both a personal Microsoft account and a work or school account from Microsoft Entra ID can sign in to the application. organizations: Only users with work or school accounts from Microsoft Entra ID can sign in to the application.
|
||||
#consumers: Only users with a personal Microsoft account can sign in to the application.
|
||||
#domain name of the Microsoft Entra tenant or the tenant ID in GUID format: Only users from a specific Microsoft Entra tenant (directory members with a work or school account or directory guests with a personal Microsoft account) can sign in to the application.
|
||||
microsoft-tenant: common
|
||||
#Client ID of the Microsoft OAuth app
|
||||
microsoft-clientId: ""
|
||||
#Client secret of the Microsoft OAuth app
|
||||
microsoft-clientSecret: ""
|
||||
#Whether Discord login is enabled
|
||||
discord-enabled: "false"
|
||||
#Limit signing in to users in a specific server. Leave it blank to disable.
|
||||
discord-limitedGuild: ""
|
||||
#Limit signing in to specific users by their Discord ID. Leave it blank to disable.
|
||||
discord-limitedUsers: ""
|
||||
#Client ID of the Discord OAuth app
|
||||
discord-clientId: ""
|
||||
#Client secret of the Discord OAuth app
|
||||
discord-clientSecret: ""
|
||||
#Whether OpenID Connect login is enabled
|
||||
oidc-enabled: "false"
|
||||
#Discovery URI of the OpenID Connect OAuth app
|
||||
oidc-discoveryUri: ""
|
||||
#Whether the “Sign out” button will sign out from the OpenID Connect provider
|
||||
oidc-signOut: "false"
|
||||
#Scopes which should be requested from the OpenID Connect provider.
|
||||
oidc-scope: openid email profile
|
||||
#Username claim in OpenID Connect ID token. Leave it blank if you don't know what this config is.
|
||||
oidc-usernameClaim: ""
|
||||
#Must be a valid JMES path referencing an array of roles. Managing access rights using OpenID Connect roles is only recommended if no other identity provider is configured and password login is disabled. Leave it blank if you don't know what this config is.
|
||||
oidc-rolePath: ""
|
||||
#Role required for general access. Must be present in a user’s roles for them to log in. Leave it blank if you don't know what this config is.
|
||||
oidc-roleGeneralAccess: ""
|
||||
#Role required for administrative access. Must be present in a user’s roles for them to access the admin panel. Leave it blank if you don't know what this config is.
|
||||
oidc-roleAdminAccess: ""
|
||||
#Client ID of the OpenID Connect OAuth app
|
||||
oidc-clientId: ""
|
||||
#Client secret of the OpenID Connect OAuth app
|
||||
oidc-clientSecret: ""
|
||||
s3:
|
||||
#Whether S3 should be used to store the shared files instead of the local file system.
|
||||
enabled: "false"
|
||||
#The URL of the S3 bucket.
|
||||
endpoint: ""
|
||||
#The region of the S3 bucket.
|
||||
region: ""
|
||||
#The name of the S3 bucket.
|
||||
bucketName: ""
|
||||
#The default path which should be used to store the files in the S3 bucket.
|
||||
bucketPath: ""
|
||||
#The key which allows you to access the S3 bucket.
|
||||
key: ""
|
||||
#The secret which allows you to access the S3 bucket.
|
||||
secret: ""
|
||||
legal:
|
||||
#Whether to show a link to imprint and privacy policy in the footer.
|
||||
enabled: "false"
|
||||
#The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.
|
||||
imprintText: ""
|
||||
#If you already have an imprint page you can link it here instead of using the text field.
|
||||
imprintUrl: ""
|
||||
#The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.
|
||||
privacyPolicyText: ""
|
||||
#If you already have a privacy policy page you can link it here instead of using the text field.
|
||||
privacyPolicyUrl: ""
|
||||
#This configuration is used to create the initial user when the application is started for the first time.
|
||||
#Make sure to change at least the password as soon as you log in!
|
||||
initUser:
|
||||
enabled: false
|
||||
username: admin
|
||||
email: admin@example.com
|
||||
password: my-secure-password
|
||||
isAdmin: true
|
||||
ldapDN: ""
|
||||
12
docker-compose.local.yml
Normal file
12
docker-compose.local.yml
Normal file
@@ -0,0 +1,12 @@
|
||||
services:
|
||||
pingvin-share:
|
||||
build: .
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3001:3000
|
||||
environment:
|
||||
- TRUST_PROXY=false
|
||||
volumes:
|
||||
- "./data:/opt/app/backend/data"
|
||||
- "./data/images:/opt/app/frontend/public/img"
|
||||
# - "./config.yaml:/opt/app/config.yaml"
|
||||
@@ -1,6 +1,6 @@
|
||||
services:
|
||||
pingvin-share:
|
||||
image: stonith404/pingvin-share
|
||||
image: stonith404/pingvin-share # or ghcr.io/stonith404/pingvin-share
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- 3000:3000
|
||||
@@ -9,6 +9,7 @@ services:
|
||||
volumes:
|
||||
- "./data:/opt/app/backend/data"
|
||||
- "./data/images:/opt/app/frontend/public/img"
|
||||
# - "./config.yaml:/opt/app/config.yaml" # Add this line, if you want to configure pingvin-share via config file and not via UI
|
||||
|
||||
# To add ClamAV, to scan your shares for malicious files,
|
||||
# see https://stonith404.github.io/pingvin-share/setup/integrations/#clamav-docker-only
|
||||
|
||||
@@ -23,7 +23,7 @@ Before you submit the pull request for review please ensure that
|
||||
When `TYPE` can be:
|
||||
|
||||
- **feat** - is a new feature
|
||||
- **doc** - documentation only changes
|
||||
- **docs** - documentation only changes
|
||||
- **fix** - a bug fix
|
||||
- **refactor** - code change that neither fixes a bug nor adds a feature
|
||||
|
||||
|
||||
@@ -4,27 +4,21 @@ id: configuration
|
||||
|
||||
# Configuration
|
||||
|
||||
You can customize Pingvin Share by going to the configuration page in your admin dashboard `/admin/config`.
|
||||
## General configuration
|
||||
|
||||
## General
|
||||
There are plenty of settings you can adjust to your needs. Pingvin Share can be configured in two ways:
|
||||
|
||||
The **General** Tab will let you customize your Pingvin Share instance to your liking.
|
||||
### UI
|
||||
|
||||
### App name
|
||||
You can change the settings in the UI (`/admin/config`)
|
||||
|
||||
To change the name of your instance, insert any text into `App name`.
|
||||
### YAML file
|
||||
|
||||
### App URL
|
||||
You can set the configuration via a YAML file. If you choose this way, you won't be able to change the settings in the UI.
|
||||
|
||||
To make your App available trough your own **domain**, insert your specific domain and also subdomain if needed. Add an `https://` if you have an SSL certificate installed. If this is not the case, use `http://`.
|
||||
If you use Docker you can create a `config.yml` file based on the [`config.example.yaml`](https://github.com/stonith404/pingvin-share/blob/main/config.yaml) and mount it to `/opt/app/config.yaml` in the container.
|
||||
|
||||
### Show home page
|
||||
|
||||
If you don't like the **home page** Pingvin Share provides and you just want the upload tab to be the main page, toggle this to `true`.
|
||||
|
||||
### Logo
|
||||
|
||||
Not only you can change your instances name, but also the logo it shows everywhere. To do that, upload an image as `png` with a 1:1 aspect ratio.
|
||||
If you run Pingvin Share without Docker, you can create a `config.yml` file based on the [`config.example.yaml`](https://github.com/stonith404/pingvin-share/blob/main/config.yaml) in the root directory of the project.
|
||||
|
||||
---
|
||||
|
||||
@@ -50,9 +44,10 @@ For installation specific configuration, you can use environment variables. The
|
||||
| `API_URL` | `http://localhost:8080` | The URL of the backend for the frontend. |
|
||||
|
||||
#### Docker specific
|
||||
|
||||
Environment variables that are only available when running Pingvin Share with Docker.
|
||||
|
||||
| Variable | Default Value | Description |
|
||||
| ------------- | ------------- | ----------------------------------------------------------------------------------------------------------- |
|
||||
| `TRUST_PROXY` | `false` | Whether Pingvin Share is behind a reverse proxy. If set to `true`, the `X-Forwarded-For` header is trusted. |
|
||||
| `PUID` and `PGID` | `1000` | The user and group ID of the user who should run Pingvin Share inside the Docker container and owns the files that are mounted with the volume. You can get the `PUID` and `GUID` of your user on your host machine by using the command `id`. For more information see [this article](https://docs.linuxserver.io/general/understanding-puid-and-pgid/#using-the-variables). |
|
||||
| Variable | Default Value | Description |
|
||||
| ----------------- | ------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
||||
| `TRUST_PROXY` | `false` | Whether Pingvin Share is behind a reverse proxy. If set to `true`, the `X-Forwarded-For` header is trusted. |
|
||||
| `PUID` and `PGID` | `1000` | The user and group ID of the user who should run Pingvin Share inside the Docker container and owns the files that are mounted with the volume. You can get the `PUID` and `GUID` of your user on your host machine by using the command `id`. For more information see [this article](https://docs.linuxserver.io/general/understanding-puid-and-pgid/#using-the-variables). |
|
||||
|
||||
@@ -8,7 +8,7 @@ id: integrations
|
||||
|
||||
ClamAV is used to scan shares for malicious files and remove them if found.
|
||||
|
||||
Please note that ClamAV needs a lot of [ressources](https://docs.clamav.net/manual/Installing/Docker.html#memory-ram-requirements).
|
||||
Please note that ClamAV needs a lot of [resources](https://docs.clamav.net/manual/Installing/Docker.html#memory-ram-requirements).
|
||||
|
||||
### Docker
|
||||
|
||||
|
||||
@@ -46,4 +46,4 @@ docker compose up -d
|
||||
npm run build
|
||||
pm2 restart pingvin-share-frontend
|
||||
```
|
||||
Note that environemnt variables are not picked up when using pm2 restart, if you actually want to change configs, you need to run ````pm2 --update-env restart````
|
||||
Note that environment variables are not picked up when using pm2 restart, if you actually want to change configs, you need to run ````pm2 --update-env restart````
|
||||
|
||||
4
frontend/package-lock.json
generated
4
frontend/package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "pingvin-share-frontend",
|
||||
"version": "1.8.1",
|
||||
"version": "1.10.2",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "pingvin-share-frontend",
|
||||
"version": "1.8.1",
|
||||
"version": "1.10.2",
|
||||
"dependencies": {
|
||||
"@emotion/react": "^11.13.3",
|
||||
"@emotion/server": "^11.11.0",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pingvin-share-frontend",
|
||||
"version": "1.8.1",
|
||||
"version": "1.10.2",
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
|
||||
@@ -8,9 +8,9 @@ import {
|
||||
} from "@mantine/core";
|
||||
import { useForm } from "@mantine/form";
|
||||
import { AdminConfig, UpdateConfig } from "../../../types/config.type";
|
||||
import TimespanInput from "../../core/TimespanInput";
|
||||
import { stringToTimespan, timespanToString } from "../../../utils/date.util";
|
||||
import FileSizeInput from "../../core/FileSizeInput";
|
||||
import TimespanInput from "../../core/TimespanInput";
|
||||
|
||||
const AdminConfigInput = ({
|
||||
configVariable,
|
||||
@@ -41,9 +41,11 @@ const AdminConfigInput = ({
|
||||
{configVariable.type == "string" &&
|
||||
(configVariable.obscured ? (
|
||||
<PasswordInput
|
||||
autoComplete="new-password"
|
||||
style={{
|
||||
width: "100%",
|
||||
}}
|
||||
disabled={!configVariable.allowEdit}
|
||||
{...form.getInputProps("stringValue")}
|
||||
onChange={(e) => onValueChange(configVariable, e.target.value)}
|
||||
/>
|
||||
@@ -52,6 +54,7 @@ const AdminConfigInput = ({
|
||||
style={{
|
||||
width: "100%",
|
||||
}}
|
||||
disabled={!configVariable.allowEdit}
|
||||
{...form.getInputProps("stringValue")}
|
||||
placeholder={configVariable.defaultValue}
|
||||
onChange={(e) => onValueChange(configVariable, e.target.value)}
|
||||
@@ -63,6 +66,7 @@ const AdminConfigInput = ({
|
||||
style={{
|
||||
width: "100%",
|
||||
}}
|
||||
disabled={!configVariable.allowEdit}
|
||||
autosize
|
||||
{...form.getInputProps("textValue")}
|
||||
placeholder={configVariable.defaultValue}
|
||||
@@ -72,6 +76,7 @@ const AdminConfigInput = ({
|
||||
{configVariable.type == "number" && (
|
||||
<NumberInput
|
||||
{...form.getInputProps("numberValue")}
|
||||
disabled={!configVariable.allowEdit}
|
||||
placeholder={configVariable.defaultValue}
|
||||
onChange={(number) => onValueChange(configVariable, number)}
|
||||
w={201}
|
||||
@@ -80,6 +85,7 @@ const AdminConfigInput = ({
|
||||
{configVariable.type == "filesize" && (
|
||||
<FileSizeInput
|
||||
{...form.getInputProps("numberValue")}
|
||||
disabled={!configVariable.allowEdit}
|
||||
value={parseInt(configVariable.value ?? configVariable.defaultValue)}
|
||||
onChange={(bytes) => onValueChange(configVariable, bytes)}
|
||||
w={201}
|
||||
@@ -88,6 +94,7 @@ const AdminConfigInput = ({
|
||||
{configVariable.type == "boolean" && (
|
||||
<>
|
||||
<Switch
|
||||
disabled={!configVariable.allowEdit}
|
||||
{...form.getInputProps("booleanValue", { type: "checkbox" })}
|
||||
onChange={(e) => onValueChange(configVariable, e.target.checked)}
|
||||
/>
|
||||
@@ -96,6 +103,7 @@ const AdminConfigInput = ({
|
||||
{configVariable.type == "timespan" && (
|
||||
<TimespanInput
|
||||
value={stringToTimespan(configVariable.value)}
|
||||
disabled={!configVariable.allowEdit}
|
||||
onChange={(timespan) =>
|
||||
onValueChange(configVariable, timespanToString(timespan))
|
||||
}
|
||||
|
||||
@@ -54,7 +54,6 @@ const Body = ({
|
||||
showSendEmailNotificationOption: boolean;
|
||||
maxExpiration: Timespan;
|
||||
}) => {
|
||||
console.log(maxExpiration);
|
||||
const modals = useModals();
|
||||
const t = useTranslate();
|
||||
|
||||
|
||||
@@ -410,7 +410,7 @@ const CreateUploadModalBody = ({
|
||||
{...form.getInputProps("recipients")}
|
||||
onKeyDown={(e: React.KeyboardEvent<HTMLInputElement>) => {
|
||||
// Add email on comma or semicolon
|
||||
if (e.key === "," || e.key === ";") {
|
||||
if (e.key === "Enter" || e.key === "," || e.key === ";") {
|
||||
e.preventDefault();
|
||||
const inputValue = (
|
||||
e.target as HTMLInputElement
|
||||
|
||||
@@ -5,6 +5,7 @@ import german from "./translations/de-DE";
|
||||
import greek from "./translations/el-GR";
|
||||
import english from "./translations/en-US";
|
||||
import spanish from "./translations/es-ES";
|
||||
import estonian from "./translations/et-EE";
|
||||
import finnish from "./translations/fi-FI";
|
||||
import french from "./translations/fr-FR";
|
||||
import croatian from "./translations/hr-HR";
|
||||
@@ -168,4 +169,9 @@ export const LOCALES = {
|
||||
code: "hr-HR",
|
||||
messages: croatian,
|
||||
},
|
||||
ESTONIAN: {
|
||||
name: "Eesti",
|
||||
code: "et-EE",
|
||||
messages: estonian,
|
||||
},
|
||||
};
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.modal.password.title": "كلمة السر مطلوبة",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "كلمة السر",
|
||||
"share.modal.error.invalid-password": "كلمة السر غير صحيحة",
|
||||
"share.button.download-all": "تنزيل الكل",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "الإعدادات",
|
||||
"admin.config.category.general": "عام",
|
||||
"admin.config.category.share": "مشاركة",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "إظهار الصفحة الرئيسية",
|
||||
"admin.config.general.show-home-page.description": "تحديد ما إذا كان سيتم عرض الصفحة الرئيسية",
|
||||
"admin.config.general.session-duration": "مدة الجلسة",
|
||||
"admin.config.general.session-duration.description": "الوقت بالساعات الذي يجب على المستخدم بعده إعادة تسجيل الدخول (الافتراضي: 3 أشهر).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "الشعار",
|
||||
"admin.config.general.logo.description": "يمكنك تغيير شعارك عن طريق تحميل صورة جديدة. يجب أن تكون الصورة PNG ويجب أن يكون تنسيقها 1:1.",
|
||||
"admin.config.general.logo.placeholder": "اختر صورة",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Soukromé sdílení",
|
||||
"share.error.access-denied.description": "Aktuální účet nemá oprávnění k přístupu k tomuto sdílení",
|
||||
"share.modal.password.title": "Heslo vyžadováno",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Heslo",
|
||||
"share.modal.error.invalid-password": "Neplatné heslo",
|
||||
"share.button.download-all": "Stáhnout vše",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Nastavení",
|
||||
"admin.config.category.general": "Obecné",
|
||||
"admin.config.category.share": "Sdílení",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Zobrazit domovskou stránku",
|
||||
"admin.config.general.show-home-page.description": "Zda zobrazovat domovskou stránku",
|
||||
"admin.config.general.session-duration": "Délka trvání relace",
|
||||
"admin.config.general.session-duration.description": "Čas v hodinách, po kterém se uživatel musí znovu přihlásit (výchozí: 3 měsíce).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Změňte své logo nahráním nového obrázku. Obrázek musí být PNG a měl by mít formát 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Vybrat obrázek",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Privat deling",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.modal.password.title": "Adgangskode påkrævet",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Adgangskode",
|
||||
"share.modal.error.invalid-password": "Ugyldig adgangskode",
|
||||
"share.button.download-all": "Download alle",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Konfiguration",
|
||||
"admin.config.category.general": "Generelt",
|
||||
"admin.config.category.share": "Del",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Vis forside",
|
||||
"admin.config.general.show-home-page.description": "Om forsiden skal vises",
|
||||
"admin.config.general.session-duration": "Session Duration",
|
||||
"admin.config.general.session-duration.description": "Time in hours after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Skift dit logo ved at uploade et nyt billede. Billedet skal være PNG og skal have formatet 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Vælg billede",
|
||||
|
||||
@@ -5,7 +5,7 @@ export default {
|
||||
"navbar.home": "Startseite",
|
||||
"navbar.signup": "Registrieren",
|
||||
"navbar.links.shares": "Meine Freigaben",
|
||||
"navbar.links.reverse": "Externe Freigaben",
|
||||
"navbar.links.reverse": "Datei Anfrage",
|
||||
"navbar.avatar.account": "Mein Konto",
|
||||
"navbar.avatar.admin": "Verwaltung",
|
||||
"navbar.avatar.signout": "Abmelden",
|
||||
@@ -133,10 +133,10 @@ export default {
|
||||
"account.shares.modal.delete.description": "Möchtest du diese Freigabe wirklich löschen?",
|
||||
// END /account/shares
|
||||
// /account/reverseShares
|
||||
"account.reverseShares.title": "Externe Freigaben",
|
||||
"account.reverseShares.description": "Eine externe Freigabe erlaubt dir eine einzigartige URL zu erstellen, die externen Benutzern erlaubt, Dateien hochzuladen.",
|
||||
"account.reverseShares.title": "Datei Anfragen",
|
||||
"account.reverseShares.description": "Eine Datei Anfrage erlaubt dir eine einzigartige URL zu erstellen, die externen Benutzern erlaubt, Dateien hochzuladen.",
|
||||
"account.reverseShares.title.empty": "Es ist leer hier 👀",
|
||||
"account.reverseShares.description.empty": "Du hast keine externen Freigaben.",
|
||||
"account.reverseShares.description.empty": "Du hast keine Datei Anfrage.",
|
||||
// showCreateReverseShareModal.tsx
|
||||
"account.reverseShares.modal.title": "Externe Freigabe erstellen",
|
||||
"account.reverseShares.modal.expiration.label": "Gültig bis",
|
||||
@@ -296,12 +296,14 @@ export default {
|
||||
"share.edit.notify.save-success": "Freigabe erfolgreich aktualisiert",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "Impressum",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "Datenschutzerklärung",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Konfigurationsdatei aktiv",
|
||||
"admin.config.config-file-warning.description": "Da Pingvin Share mit einer Konfigurationsdatei konfiguriert ist, kann die Konfiguration nicht über die Benutzeroberfläche geändert werden.",
|
||||
"admin.config.title": "Einstellungen",
|
||||
"admin.config.category.general": "Allgemein",
|
||||
"admin.config.category.share": "Freigabe",
|
||||
@@ -345,8 +347,8 @@ export default {
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Gibt an, ob nicht authentifizierte Benutzer Freigaben erstellen können",
|
||||
"admin.config.share.max-expiration": "Max. Ablaufdatum",
|
||||
"admin.config.share.max-expiration.description": "Maximale Ablaufzeit. Auf 0 setzen, um kein Ablaufdatum zu definieren.",
|
||||
"admin.config.share.share-id-length": "Default share ID length",
|
||||
"admin.config.share.share-id-length.description": "Default length for the generated ID of a share. This value is also used to generate links for reverse shares. A value below 8 is not considered secure.",
|
||||
"admin.config.share.share-id-length": "Standardlänge der Freigabe-ID",
|
||||
"admin.config.share.share-id-length.description": "Standardlänge für die generierte ID einer Freigabe. Dieser Wert wird auch verwendet, um Links für umgekehrte Freigaben zu generieren. Ein Wert unter 8 wird als nicht sicher betrachtet.",
|
||||
"admin.config.share.max-size": "Maximale Größe",
|
||||
"admin.config.share.max-size.description": "Maximale Größe einer Freigabe",
|
||||
"admin.config.share.zip-compression-level": "ZIP-Kompressionslevel",
|
||||
@@ -445,9 +447,9 @@ export default {
|
||||
"admin.config.ldap.field-name-member-of.description": "LDAP-Attributname für die Gruppen, in denen ein Benutzer Mitglied ist. Dies wird bei der Überprüfung der Admin-Gruppe verwendet.",
|
||||
"admin.config.ldap.field-name-email": "Attributname für die E-Mail-Adresse des Benutzers",
|
||||
"admin.config.ldap.field-name-email.description": "LDAP-Attributname für die E-Mail-Adresse eines Benutzers.",
|
||||
"admin.config.notify.success": "Configuration updated successfully.",
|
||||
"admin.config.notify.logo-success": "Logo updated successfully. It may take a few minutes to update on the website.",
|
||||
"admin.config.notify.no-changes": "No changes to save.",
|
||||
"admin.config.notify.success": "Konfiguration erfolgreich aktualisiert.",
|
||||
"admin.config.notify.logo-success": "Logo erfolgreich aktualisiert. Es kann einige Minuten dauern, bis es auf der Website aktualisiert wird.",
|
||||
"admin.config.notify.no-changes": "Keine Änderungen zu speichern.",
|
||||
"admin.config.category.s3": "S3",
|
||||
"admin.config.s3.enabled": "Aktiviert",
|
||||
"admin.config.s3.enabled.description": "Ob S3 verwendet werden soll, um die freigegebenen Dateien anstelle des lokalen Dateisystems zu speichern.",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Ιδιωτική κοινοποίηση",
|
||||
"share.error.access-denied.description": "Ο τρέχων λογαριασμός δεν έχει δικαίωμα πρόσβασης σε αυτήν την κοινοποίηση",
|
||||
"share.modal.password.title": "Απαιτείται κωδικός",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Κωδικός πρόσβασης",
|
||||
"share.modal.error.invalid-password": "Μη έγκυρος κωδικός πρόσβασης",
|
||||
"share.button.download-all": "Λήψη όλων",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Διαμόρφωση",
|
||||
"admin.config.category.general": "Γενικά",
|
||||
"admin.config.category.share": "Διαμοιρασμός",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Εμφάνιση αρχικής σελίδας",
|
||||
"admin.config.general.show-home-page.description": "Εάν θα εμφανίζεται η αρχική σελίδα",
|
||||
"admin.config.general.session-duration": "Διάρκεια συνεδρίας",
|
||||
"admin.config.general.session-duration.description": "Χρόνος σε ώρες μετά την οποία ένας χρήστης πρέπει να συνδεθεί ξανά (προεπιλογή: 3 μήνες).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Λογότυπο",
|
||||
"admin.config.general.logo.description": "Αλλάξτε το λογότυπό σας ανεβάζοντας μια νέα εικόνα. Η εικόνα πρέπει να είναι PNG και αναλογία 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Επιλέξτε εικόνα",
|
||||
|
||||
@@ -379,7 +379,7 @@ export default {
|
||||
|
||||
"share.modal.password.title": "Password required",
|
||||
"share.modal.password.description":
|
||||
"Please enter the password to acces this share.",
|
||||
"Please enter the password to access this share.",
|
||||
"share.modal.password": "Password",
|
||||
"share.modal.error.invalid-password": "Invalid password",
|
||||
|
||||
@@ -414,6 +414,9 @@ export default {
|
||||
// END /privacy
|
||||
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
|
||||
"admin.config.title": "Configuration",
|
||||
"admin.config.category.general": "General",
|
||||
"admin.config.category.share": "Share",
|
||||
@@ -434,7 +437,7 @@ export default {
|
||||
"Whether to show the home page",
|
||||
"admin.config.general.session-duration": "Session Duration",
|
||||
"admin.config.general.session-duration.description":
|
||||
"Time in hours after which a user must log in again (default: 3 months).",
|
||||
"Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description":
|
||||
"Change your logo by uploading a new image. The image must be a PNG and should have the format 1:1.",
|
||||
@@ -503,7 +506,7 @@ export default {
|
||||
"admin.config.smtp.port.description": "Port of the SMTP server",
|
||||
"admin.config.smtp.email": "Email",
|
||||
"admin.config.smtp.email.description":
|
||||
"Email address from wich the emails get sent",
|
||||
"Email address from which the emails get sent",
|
||||
"admin.config.smtp.username": "Username",
|
||||
"admin.config.smtp.username.description": "Username of the SMTP server",
|
||||
"admin.config.smtp.password": "Password",
|
||||
|
||||
@@ -12,7 +12,7 @@ export default {
|
||||
// END navbar
|
||||
// /
|
||||
"home.title": "Una plataforma <h>autoalojada</h> para compartir archivos.",
|
||||
"home.description": "¿En realidad quieres dejar tus archivos personales en manos de terceros como WeTransfer?",
|
||||
"home.description": "¿De verdad quieres dejar tus archivos personales en manos de terceros como WeTransfer?",
|
||||
"home.bullet.a.name": "Autoalojada",
|
||||
"home.bullet.a.description": "Aloja Pingvin Share en tu propio equipo.",
|
||||
"home.bullet.b.name": "Privacidad",
|
||||
@@ -124,9 +124,9 @@ export default {
|
||||
"account.shares.table.expiresAt": "Vence el",
|
||||
"account.shares.table.createdAt": "Creado el",
|
||||
"account.shares.table.size": "Tamaño",
|
||||
"account.shares.table.password-protected": "Password protected",
|
||||
"account.shares.table.visitor-count": "{count} of {max}",
|
||||
"account.shares.table.expiry-never": "Never",
|
||||
"account.shares.table.password-protected": "Protegido por contraseña",
|
||||
"account.shares.table.visitor-count": "{count} de {max}",
|
||||
"account.shares.table.expiry-never": "Nunca",
|
||||
"account.shares.modal.share-informations": "Información del compartido",
|
||||
"account.shares.modal.share-link": "Enlace",
|
||||
"account.shares.modal.delete.title": "Eliminar enlace compartido: {share}",
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Compartición privada",
|
||||
"share.error.access-denied.description": "La cuenta actual no tiene permiso para acceder a este compartido",
|
||||
"share.modal.password.title": "Se requiere contraseña",
|
||||
"share.modal.password.description": "Por favor, ingresa la contraseña para acceder a este enlace compartido.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Contraseña",
|
||||
"share.modal.error.invalid-password": "Contraseña inválida",
|
||||
"share.button.download-all": "Descargar todo",
|
||||
@@ -296,12 +296,14 @@ export default {
|
||||
"share.edit.notify.save-success": "Compartir actualizado correctamente",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "Aviso legal",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "Política de privacidad",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Configuración",
|
||||
"admin.config.category.general": "General",
|
||||
"admin.config.category.share": "Compartido",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Mostrar página de inicio",
|
||||
"admin.config.general.show-home-page.description": "Mostrar o no la página de inicio",
|
||||
"admin.config.general.session-duration": "Duración de la sesión",
|
||||
"admin.config.general.session-duration.description": "Tiempo en horas después del cual un usuario debe iniciar sesión de nuevo (por defecto: 3 meses).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Cambia tu logo subiendo una nueva imagen. La imagen debe ser un PNG y debe estar en formato 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Elegir imagen",
|
||||
@@ -344,7 +346,7 @@ export default {
|
||||
"admin.config.share.allow-unauthenticated-shares": "Permitir compartir sin iniciar sesión",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Si los usuarios que no han iniciado sesión pueden compartir",
|
||||
"admin.config.share.max-expiration": "Expiración máxima",
|
||||
"admin.config.share.max-expiration.description": "Maximum share expiration. Set to 0 to allow unlimited expiration.",
|
||||
"admin.config.share.max-expiration.description": "Plazo máximo de caducidad. Establecer en 0 para enlaces sin caducidad.",
|
||||
"admin.config.share.share-id-length": "Longitud de ID compartido por defecto",
|
||||
"admin.config.share.share-id-length.description": "Longitud predeterminada para el ID generado de un compartido. Este valor también se usa para generar enlaces compartidos de uso inverso. Un valor inferior a 8 no se considera seguro.",
|
||||
"admin.config.share.max-size": "Tamaño máximo",
|
||||
@@ -449,31 +451,31 @@ export default {
|
||||
"admin.config.notify.logo-success": "Logo actualizado correctamente. Puede tardar unos minutos en actualizarse en el sitio web.",
|
||||
"admin.config.notify.no-changes": "No hay cambios que guardar.",
|
||||
"admin.config.category.s3": "S3",
|
||||
"admin.config.s3.enabled": "Enabled",
|
||||
"admin.config.s3.enabled.description": "Whether S3 should be used to store the shared files instead of the local file system.",
|
||||
"admin.config.s3.endpoint": "Endpoint",
|
||||
"admin.config.s3.endpoint.description": "The URL of the S3 bucket.",
|
||||
"admin.config.s3.region": "Region",
|
||||
"admin.config.s3.region.description": "The region of the S3 bucket.",
|
||||
"admin.config.s3.bucket-name": "Bucket name",
|
||||
"admin.config.s3.bucket-name.description": "The name of the S3 bucket.",
|
||||
"admin.config.s3.bucket-path": "Path",
|
||||
"admin.config.s3.bucket-path.description": "The default path which should be used to store the files in the S3 bucket.",
|
||||
"admin.config.s3.key": "Key",
|
||||
"admin.config.s3.key.description": "The key which allows you to access the S3 bucket.",
|
||||
"admin.config.s3.secret": "Secret",
|
||||
"admin.config.s3.secret.description": "The secret which allows you to access the S3 bucket.",
|
||||
"admin.config.s3.enabled": "Habilitado",
|
||||
"admin.config.s3.enabled.description": "Si se debería utilizar S3 en lugar del sistema de archivos local para almacenar los archivos compartidos.",
|
||||
"admin.config.s3.endpoint": "Punto de acceso/endpoint",
|
||||
"admin.config.s3.endpoint.description": "La URL del bucket S3.",
|
||||
"admin.config.s3.region": "Región",
|
||||
"admin.config.s3.region.description": "La región del bucket S3.",
|
||||
"admin.config.s3.bucket-name": "Nombre del bucket",
|
||||
"admin.config.s3.bucket-name.description": "El nombre del bucket S3.",
|
||||
"admin.config.s3.bucket-path": "Ruta",
|
||||
"admin.config.s3.bucket-path.description": "La ruta predeterminada que se debe usar para almacenar los archivos en el bucket S3.",
|
||||
"admin.config.s3.key": "Clave",
|
||||
"admin.config.s3.key.description": "La clave que permite el acceso al bucket S3.",
|
||||
"admin.config.s3.secret": "Secreto",
|
||||
"admin.config.s3.secret.description": "El secreto que permite acceder al bucket S3.",
|
||||
"admin.config.category.legal": "Legal",
|
||||
"admin.config.legal.enabled": "Enable legal notices",
|
||||
"admin.config.legal.enabled.description": "Whether to show a link to imprint and privacy policy in the footer.",
|
||||
"admin.config.legal.imprint-text": "Imprint text",
|
||||
"admin.config.legal.imprint-text.description": "The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.",
|
||||
"admin.config.legal.imprint-url": "Imprint URL",
|
||||
"admin.config.legal.imprint-url.description": "If you already have an imprint page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.privacy-policy-text": "Privacy policy text",
|
||||
"admin.config.legal.privacy-policy-text.description": "The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.",
|
||||
"admin.config.legal.privacy-policy-url": "Privacy policy URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "If you already have a privacy policy page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.enabled": "Habilitar avisos legales",
|
||||
"admin.config.legal.enabled.description": "Mostrar un enlace al aviso legal y a la política de privacidad en el pie de página.",
|
||||
"admin.config.legal.imprint-text": "Texto del aviso legal",
|
||||
"admin.config.legal.imprint-text.description": "El texto que debería mostrarse en el aviso legal. Soporta Markdown. Dejar en blanco para enlazar a un enlace externo.",
|
||||
"admin.config.legal.imprint-url": "URL del aviso legal",
|
||||
"admin.config.legal.imprint-url.description": "Si ya tiene una página de aviso legal, puede enlazarlo aquí en lugar de utilizar el campo de texto.",
|
||||
"admin.config.legal.privacy-policy-text": "Texto de la política de privacidad",
|
||||
"admin.config.legal.privacy-policy-text.description": "El texto que debe mostrarse en la política de privacidad. Compatible con Markdown. Dejar en blanco para enlazar a una página de política de privacidad externa.",
|
||||
"admin.config.legal.privacy-policy-url": "URL de la política de privacidad",
|
||||
"admin.config.legal.privacy-policy-url.description": "Si ya tiene una página de política de privacidad puede enlazarla aquí en lugar de usar el campo de texto.",
|
||||
// 404
|
||||
"404.description": "Oops esta página no existe.",
|
||||
"404.button.home": "Regrésame al inicio",
|
||||
|
||||
532
frontend/src/i18n/translations/et-EE.ts
Normal file
532
frontend/src/i18n/translations/et-EE.ts
Normal file
@@ -0,0 +1,532 @@
|
||||
export default {
|
||||
// Navbar
|
||||
"navbar.upload": "Laadi üles",
|
||||
"navbar.signin": "Logi sisse",
|
||||
"navbar.home": "Avaleht",
|
||||
"navbar.signup": "Registreeru",
|
||||
"navbar.links.shares": "Minu jagamised",
|
||||
"navbar.links.reverse": "Pööratud jagamised",
|
||||
"navbar.avatar.account": "Minu konto",
|
||||
"navbar.avatar.admin": "Administreerimine",
|
||||
"navbar.avatar.signout": "Logi välja",
|
||||
// END navbar
|
||||
// /
|
||||
"home.title": "<h>Isehostitav</h> failijagamisplatvorm.",
|
||||
"home.description": "Kas tõesti soovid anda oma isiklikud failid kolmandate osapoolte nagu WeTransfer kätte?",
|
||||
"home.bullet.a.name": "Isehostitav",
|
||||
"home.bullet.a.description": "Hosti Pingvin Share oma seadmes.",
|
||||
"home.bullet.b.name": "Privaatsus",
|
||||
"home.bullet.b.description": "Sinu failid on sinu omad ja neile ei pääse ligi kolmandad osapooled.",
|
||||
"home.bullet.c.name": "Ei mingeid tüütuid failisuuruse piiranguid",
|
||||
"home.bullet.c.description": "Laadi üles suuri faile ilma piiranguteta. Ainuke piirang on sinu kõvaketta maht.",
|
||||
"home.button.start": "Alusta",
|
||||
"home.button.source": "Lähtekood",
|
||||
// END /
|
||||
// /auth/signin
|
||||
"signin.title": "Tere tulemast tagasi",
|
||||
"signin.description": "Kas sul pole veel kontot?",
|
||||
"signin.button.signup": "Registreeru",
|
||||
"signin.input.email-or-username": "E-post või kasutajanimi",
|
||||
"signin.input.email-or-username.placeholder": "Sinu e-post või kasutajanimi",
|
||||
"signin.input.password": "Parool",
|
||||
"signin.input.password.placeholder": "Sinu parool",
|
||||
"signin.button.submit": "Logi sisse",
|
||||
"signIn.notify.totp-required.title": "Kahefaktoriline autentimine nõutud",
|
||||
"signIn.notify.totp-required.description": "Palun sisesta oma kahefaktorilise autentimise kood",
|
||||
"signIn.oauth.or": "VÕI",
|
||||
"signIn.oauth.signInWith": "Logi sisse kasutades",
|
||||
"signIn.oauth.github": "GitHub",
|
||||
"signIn.oauth.google": "Google",
|
||||
"signIn.oauth.microsoft": "Microsoft",
|
||||
"signIn.oauth.discord": "Discord",
|
||||
"signIn.oauth.oidc": "OpenID",
|
||||
// END /auth/signin
|
||||
// /auth/signup
|
||||
"signup.title": "Loo konto",
|
||||
"signup.description": "Kas sul on juba konto?",
|
||||
"signup.button.signin": "Logi sisse",
|
||||
"signup.input.username": "Kasutajanimi",
|
||||
"signup.input.username.placeholder": "Sinu kasutajanimi",
|
||||
"signup.input.email": "E-post",
|
||||
"signup.input.email.placeholder": "Sinu e-post",
|
||||
"signup.button.submit": "Alustame",
|
||||
// END /auth/signup
|
||||
// /auth/totp
|
||||
"totp.title": "TOTP autentimine",
|
||||
"totp.button.signIn": "Sisene",
|
||||
// END /auth/totp
|
||||
// /auth/reset-password
|
||||
"resetPassword.title": "Unustasid oma parooli?",
|
||||
"resetPassword.description": "Parooli lähtestamiseks sisesta enda e-posti aadress.",
|
||||
"resetPassword.notify.success": "Kui antud e-post on registreeritud, saadetakse e-mailiga link parooli lähtestamiseks.",
|
||||
"resetPassword.button.back": "Tagasi sisselogimislehele",
|
||||
"resetPassword.text.resetPassword": "Lähtesta parool",
|
||||
"resetPassword.text.enterNewPassword": "Sisesta uus parool",
|
||||
"resetPassword.input.password": "Uus parool",
|
||||
"resetPassword.notify.passwordReset": "Sinu parool on edukalt lähtestatud.",
|
||||
// /account
|
||||
"account.title": "Minu konto",
|
||||
"account.card.info.title": "Konto info",
|
||||
"account.card.info.username": "Kasutajanimi",
|
||||
"account.card.info.email": "E-post",
|
||||
"account.notify.info.success": "Konto edukalt uuendatud",
|
||||
"account.card.password.title": "Parool",
|
||||
"account.card.password.old": "Vana parool",
|
||||
"account.card.password.new": "Uus parool",
|
||||
"account.card.password.noPasswordSet": "Sul pole parooli seatud. E-posti ja parooliga sisselogimiseks pead looma parooli.",
|
||||
"account.notify.password.success": "Parool edukalt muudetud",
|
||||
"account.card.oauth.title": "Sisselogimine sotsiaalmeediatega",
|
||||
"account.card.oauth.github": "GitHub",
|
||||
"account.card.oauth.google": "Google",
|
||||
"account.card.oauth.microsoft": "Microsoft",
|
||||
"account.card.oauth.discord": "Discord",
|
||||
"account.card.oauth.oidc": "OpenID",
|
||||
"account.card.oauth.link": "Ühenda",
|
||||
"account.card.oauth.unlink": "Eemalda ühendus",
|
||||
"account.card.oauth.unlinked": "Ühendus eemaldatud",
|
||||
"account.modal.unlink.title": "Eemalda konto seos",
|
||||
"account.modal.unlink.description": "Sotsiaalmeedia kontode lahtiühendamine võib põhjustada konto kaotamist kui sa ei mäleta oma sisselogimisandmeid",
|
||||
"account.notify.oauth.unlinked.success": "Ühendus eemaldatud edukalt",
|
||||
"account.card.security.title": "Turvalisus",
|
||||
"account.card.security.totp.enable.description": "Sisesta oma praegune parool, et alustada TOTP sisselülitamist",
|
||||
"account.card.security.totp.disable.description": "Sisesta oma praegune parool, et välja lülitada TOTP",
|
||||
"account.card.security.totp.button.start": "Alusta",
|
||||
"account.modal.totp.title": "Lülita sisse TOTP",
|
||||
"account.modal.totp.step1": "1. samm: Lisa oma autentikaator",
|
||||
"account.modal.totp.step2": "2. samm: Kinnita oma kood",
|
||||
"account.modal.totp.enterManually": "Sisesta käsitsi",
|
||||
"account.modal.totp.code": "Kood",
|
||||
"common.button.clickToCopy": "Klõpsa, et kopeerida",
|
||||
"account.modal.totp.verify": "Kinnita",
|
||||
"account.notify.totp.disable": "TOTP edukalt välja lülitatud",
|
||||
"account.notify.totp.enable": "TOTP edukalt sisse lülitatud",
|
||||
"account.card.language.title": "Keel",
|
||||
"account.card.language.description": "Projekti tõlkis kogukond. Mõned keeleversioonid võivad olla mittetäielikud.",
|
||||
"account.card.color.title": "Värviskeem",
|
||||
// ThemeSwitcher.tsx
|
||||
"account.theme.dark": "Tume",
|
||||
"account.theme.light": "Hele",
|
||||
"account.theme.system": "Süsteemi",
|
||||
"account.button.delete": "Kustuta konto",
|
||||
"account.modal.delete.title": "Kustuta konto",
|
||||
"account.modal.delete.description": "Kas tahad tõesti kustutada enda konto koos kõikide jagatud failidega?",
|
||||
// END /account
|
||||
// /account/shares
|
||||
"account.shares.title": "Minu jagamised",
|
||||
"account.shares.title.empty": "Siin on tühjus 👀",
|
||||
"account.shares.description.empty": "Sul pole ühtegi jagamist.",
|
||||
"account.shares.button.create": "Loo üks",
|
||||
"account.shares.info.title": "Jagamise andmed",
|
||||
"account.shares.table.id": "ID",
|
||||
"account.shares.table.name": "Nimi",
|
||||
"account.shares.table.description": "Kirjeldus",
|
||||
"account.shares.table.visitors": "Külastajad",
|
||||
"account.shares.table.expiresAt": "Aegub",
|
||||
"account.shares.table.createdAt": "Loodud",
|
||||
"account.shares.table.size": "Suurus",
|
||||
"account.shares.table.password-protected": "Parooliga kaitstud",
|
||||
"account.shares.table.visitor-count": "{count} / {max}",
|
||||
"account.shares.table.expiry-never": "Mitte kunagi",
|
||||
"account.shares.modal.share-informations": "Jagamise andmed",
|
||||
"account.shares.modal.share-link": "Jagamise link",
|
||||
"account.shares.modal.delete.title": "Kustuta jagamine: {share}",
|
||||
"account.shares.modal.delete.description": "Kas soovid tõesti seda jagamist kustutada?",
|
||||
// END /account/shares
|
||||
// /account/reverseShares
|
||||
"account.reverseShares.title": "Tagasijagamine",
|
||||
"account.reverseShares.description": "Tagasijagamine võimaldab sul genereerida unikaalse URL-i, mille kaudu väliskasutajad saavad luua jagamise.",
|
||||
"account.reverseShares.title.empty": "Siin on tühjus 👀",
|
||||
"account.reverseShares.description.empty": "Sul pole ühtegi tagasijagamist.",
|
||||
// showCreateReverseShareModal.tsx
|
||||
"account.reverseShares.modal.title": "Loo tagasijagamine",
|
||||
"account.reverseShares.modal.expiration.label": "Aegumisaeg",
|
||||
"account.reverseShares.modal.expiration.minute-singular": "Minut",
|
||||
"account.reverseShares.modal.expiration.minute-plural": "Minutit",
|
||||
"account.reverseShares.modal.expiration.hour-singular": "Tund",
|
||||
"account.reverseShares.modal.expiration.hour-plural": "Tundi",
|
||||
"account.reverseShares.modal.expiration.day-singular": "Päev",
|
||||
"account.reverseShares.modal.expiration.day-plural": "Päeva",
|
||||
"account.reverseShares.modal.expiration.week-singular": "Nädal",
|
||||
"account.reverseShares.modal.expiration.week-plural": "Nädalat",
|
||||
"account.reverseShares.modal.expiration.month-singular": "Kuu",
|
||||
"account.reverseShares.modal.expiration.month-plural": "Kuud",
|
||||
"account.reverseShares.modal.expiration.year-singular": "Aasta",
|
||||
"account.reverseShares.modal.expiration.year-plural": "Aastat",
|
||||
"account.reverseShares.modal.max-size.label": "Jagamise maksimaalne suurus",
|
||||
"account.reverseShares.modal.send-email": "Saada e-posti teavitusi",
|
||||
"account.reverseShares.modal.send-email.description": "Sulle saadetakse e-posti teavitus kui selle tagasijagamise lingiga luuakse jagamine.",
|
||||
"account.reverseShares.modal.simplified": "Lihtrežiim",
|
||||
"account.reverseShares.modal.simplified.description": "Muuda faili üleslaadija jaoks lihtsaks faili sinuga jagamine. Nad saavad muuta ainult jagamise nime ja kirjeldust.",
|
||||
"account.reverseShares.modal.public-access": "Avalik juurdepääs",
|
||||
"account.reverseShares.modal.public-access.description": "Tee selle tagasijagamise lingi abil loodud jagamised avalikuks. Kui see on keelatud, saavad neid vaadata ainult sina ja jagamise looja.",
|
||||
"account.reverseShares.modal.max-use.label": "Maksimaalne kasutuskordade arv",
|
||||
"account.reverseShares.modal.max-use.description": "Maksimaalne arv kordi, mil seda URL-i saab kasutada jagamise loomiseks.",
|
||||
"account.reverseShare.never-expires": "See tagasijagamine ei aegu kunagi.",
|
||||
"account.reverseShare.expires-on": "See tagasijagamine aegub {expiration}.",
|
||||
"account.reverseShares.table.no-shares": "Ühtegi jagamist pole veel loodud",
|
||||
"account.reverseShares.table.count.singular": "jagamine",
|
||||
"account.reverseShares.table.count.plural": "jagamised",
|
||||
"account.reverseShares.table.shares": "Jagamised",
|
||||
"account.reverseShares.table.remaining": "Järelejäänud kasutuskorrad",
|
||||
"account.reverseShares.table.max-size": "Jagamise maksimaalne suurus",
|
||||
"account.reverseShares.table.expires": "Aegub",
|
||||
"account.reverseShares.modal.reverse-share-link": "Tagasijagamise link",
|
||||
"account.reverseShares.modal.delete.title": "Kustuta tagasijagamine",
|
||||
"account.reverseShares.modal.delete.description": "Kas soovid tõesti seda tagasijagamist kustutada? Kui jah, siis kustutatakse ka sellega seotud jagamised.",
|
||||
// END /account/reverseShares
|
||||
// /admin
|
||||
"admin.title": "Administreerimine",
|
||||
"admin.button.users": "Kasutajate haldamine",
|
||||
"admin.button.shares": "Jagamiste haldamine",
|
||||
"admin.button.config": "Seaded",
|
||||
"admin.version": "Versioon",
|
||||
// END /admin
|
||||
// /admin/users
|
||||
"admin.users.title": "Kasutajate haldamine",
|
||||
"admin.users.table.username": "Kasutajanimi",
|
||||
"admin.users.table.email": "E-post",
|
||||
"admin.users.table.admin": "Admin",
|
||||
"admin.users.edit.update.title": "Muuda kasutajat: {username}",
|
||||
"admin.users.edit.update.admin-privileges": "Administraatori õigused",
|
||||
"admin.users.edit.update.change-password.title": "Muuda parooli",
|
||||
"admin.users.edit.update.change-password.field": "Uus parool",
|
||||
"admin.users.edit.update.change-password.button": "Salvesta uus parool",
|
||||
"admin.users.edit.update.notify.password.success": "Parool edukalt muudetud",
|
||||
"admin.users.edit.delete.title": "Kustuta kasutaja: {username}?",
|
||||
"admin.users.edit.delete.description": "Kas soovid tõesti kustutada selle kasutaja ja kõik tema jagamised?",
|
||||
// showCreateUserModal.tsx
|
||||
"admin.users.modal.create.title": "Loo kasutaja",
|
||||
"admin.users.modal.create.username": "Kasutajanimi",
|
||||
"admin.users.modal.create.email": "E-post",
|
||||
"admin.users.modal.create.password": "Parool",
|
||||
"admin.users.modal.create.manual-password": "Sea parool käsitsi",
|
||||
"admin.users.modal.create.manual-password.description": "Kui see ei ole märgitud, saab kasutaja e-kirja lingiga mille kaudu oma parooli seada.",
|
||||
"admin.users.modal.create.admin": "Administraatori õigused",
|
||||
"admin.users.modal.create.admin.description": "Kui see on märgitud, saab kasutaja pääseda administraatori paneelile.",
|
||||
// END /admin/users
|
||||
// /admin/shares
|
||||
"admin.shares.title": "Jagamiste haldus",
|
||||
"admin.shares.table.id": "Jagamise ID",
|
||||
"admin.shares.table.username": "Looja",
|
||||
"admin.shares.table.visitors": "Külastajad",
|
||||
"admin.shares.table.expires": "Aegub",
|
||||
"admin.shares.edit.delete.title": "Kustuta jagamine: {id}",
|
||||
"admin.shares.edit.delete.description": "Kas soovid tõesti seda jagamist kustutada?",
|
||||
// END /admin/shares
|
||||
// /upload
|
||||
"upload.title": "Laadi üles",
|
||||
"upload.notify.confirm-leave": "Kas oled kindel, et soovid sellelt lehelt lahkuda? Sinu üleslaadimine tühistatakse.",
|
||||
"upload.notify.generic-error": "Jagamise lõpetamisel tekkis viga.",
|
||||
"upload.notify.count-failed": "{count} faili ei õnnestunud üles laadida. Proovime uuesti.",
|
||||
"upload.reverse-share.error.invalid.title": "Vigane tagasijagamise link",
|
||||
"upload.reverse-share.error.invalid.description": "See tagasijagamine on aegunud või vigane.",
|
||||
// Dropzone.tsx
|
||||
"upload.dropzone.title": "Laadi üles failid",
|
||||
"upload.dropzone.description": "Lohista ja aseta failid siia, et alustada jagamist. Võtame vastu ainult faile, mille kogusuurus on maksimaalselt {maxSize}.",
|
||||
"upload.dropzone.notify.file-too-big": "Sinu failid ületavad lubatud suuruse {maxSize}.",
|
||||
// FileList.tsx
|
||||
"upload.filelist.name": "Nimi",
|
||||
"upload.filelist.size": "Suurus",
|
||||
// showCreateUploadModal.tsx
|
||||
"upload.modal.title": "Loo jagamine",
|
||||
"upload.modal.link.error.invalid": "Võib sisaldada ainult tähti, numbreid, alakriipse ja kriipse",
|
||||
"upload.modal.link.error.taken": "See link on juba kasutusel",
|
||||
"upload.modal.not-signed-in": "Sa ei ole sisse logitud",
|
||||
"upload.modal.not-signed-in-description": "Sa ei saa oma jagamist käsitsi kustutada ega külastajate arvu vaadata.",
|
||||
"upload.modal.expires.never": "mitte kunagi",
|
||||
"upload.modal.expires.never-long": "Püsiv jagamine",
|
||||
"upload.modal.expires.error.too-long": "Aegumiskuupäev ületab lubatud maksimaalset {max}.",
|
||||
"upload.modal.link.label": "Link",
|
||||
"upload.modal.expires.label": "Aegumisaeg",
|
||||
"upload.modal.expires.minute-singular": "Minut",
|
||||
"upload.modal.expires.minute-plural": "Minutit",
|
||||
"upload.modal.expires.hour-singular": "Tund",
|
||||
"upload.modal.expires.hour-plural": "Tundi",
|
||||
"upload.modal.expires.day-singular": "Päev",
|
||||
"upload.modal.expires.day-plural": "Päeva",
|
||||
"upload.modal.expires.week-singular": "Nädal",
|
||||
"upload.modal.expires.week-plural": "Nädalat",
|
||||
"upload.modal.expires.month-singular": "Kuu",
|
||||
"upload.modal.expires.month-plural": "Kuud",
|
||||
"upload.modal.expires.year-singular": "Aasta",
|
||||
"upload.modal.expires.year-plural": "Aastat",
|
||||
"upload.modal.accordion.name-and-description.title": "Nimi ja kirjeldus",
|
||||
"upload.modal.accordion.name-and-description.name.placeholder": "Nimi",
|
||||
"upload.modal.accordion.name-and-description.description.placeholder": "Märkus selle jagamise saajatele",
|
||||
"upload.modal.accordion.email.title": "E-kirja saajad",
|
||||
"upload.modal.accordion.email.placeholder": "Sisesta e-posti aadressid",
|
||||
"upload.modal.accordion.email.invalid-email": "Vigane e-posti aadress",
|
||||
"upload.modal.accordion.security.title": "Turvavalikud",
|
||||
"upload.modal.accordion.security.password.label": "Paroolikaitse",
|
||||
"upload.modal.accordion.security.password.placeholder": "Parool puudub",
|
||||
"upload.modal.accordion.security.max-views.label": "Maksimaalne vaatamiste arv",
|
||||
"upload.modal.accordion.security.max-views.placeholder": "Piiramatu",
|
||||
// showCompletedUploadModal.tsx
|
||||
"upload.modal.completed.never-expires": "See jagamine ei aegu mitte kunagi.",
|
||||
"upload.modal.completed.expires-on": "See jagamine aegub {expiration}.",
|
||||
"upload.modal.completed.share-ready": "Jagamine valmis",
|
||||
"upload.modal.completed.notified-reverse-share-creator": "Oleme teavitanud tagasijagamise loojat. Saad samuti seda linki nendega käsitsi teiste vahenditega jagada.",
|
||||
// END /upload
|
||||
// /share/[id]
|
||||
"share.title": "Jagamine {shareId}",
|
||||
"share.description": "Vaata, mida ma sinuga jagasin!",
|
||||
"share.error.visitor-limit-exceeded.title": "Külastajate limiit ületatud",
|
||||
"share.error.visitor-limit-exceeded.description": "Selle jagamise külastajate limiit on ületatud.",
|
||||
"share.error.removed.title": "Jagamine eemaldatud",
|
||||
"share.error.not-found.title": "Jagamist ei leitud",
|
||||
"share.error.not-found.description": "Otsitavat jagamist ei eksisteeri.",
|
||||
"share.error.access-denied.title": "Privaatne jagamine",
|
||||
"share.error.access-denied.description": "Praegusel kontol puudub luba sellele jagamisele juurde pääseda",
|
||||
"share.modal.password.title": "Parool vajalik",
|
||||
"share.modal.password.description": "Palun sisesta parool, et sellele jagamisele juurde pääseda.",
|
||||
"share.modal.password": "Parool",
|
||||
"share.modal.error.invalid-password": "Vigane parool",
|
||||
"share.button.download-all": "Laadi kõik alla",
|
||||
"share.notify.download-all-preparing": "Jagamist valmistatakse ette. Palun proovi mõne minuti pärast uuesti.",
|
||||
"share.modal.file-link": "Faili link",
|
||||
"share.table.name": "Nimi",
|
||||
"share.table.size": "Suurus",
|
||||
"share.modal.file-preview.error.not-supported.title": "Eelvaadet ei toetata",
|
||||
"share.modal.file-preview.error.not-supported.description": "Selle failitüübi eelvaateid ei toetata. Faili vaatamiseks laadi see alla.",
|
||||
// END /share/[id]
|
||||
// /share/[id]/edit
|
||||
"share.edit.title": "Muuda jagamist {shareId}",
|
||||
"share.edit.append-upload": "Lisa fail",
|
||||
"share.edit.notify.generic-error": "Jagamise lõpetamisel tekkis viga.",
|
||||
"share.edit.notify.save-success": "Jagamine edukalt uuendatud",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Kontaktandmed",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privaatsuspoliitika",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Seaded",
|
||||
"admin.config.category.general": "Üldine",
|
||||
"admin.config.category.share": "Jagamine",
|
||||
"admin.config.category.email": "E-post",
|
||||
"admin.config.category.smtp": "SMTP",
|
||||
"admin.config.category.oauth": "Sotsiaalmeediaga sisselogimine",
|
||||
"admin.config.general.app-name": "Rakenduse nimi",
|
||||
"admin.config.general.app-name.description": "Rakenduse nimi",
|
||||
"admin.config.general.app-url": "Rakenduse URL",
|
||||
"admin.config.general.app-url.description": "URL, mille kaudu Pingvin Share on kättesaadav",
|
||||
"admin.config.general.secure-cookies": "Turvalised küpsised",
|
||||
"admin.config.general.secure-cookies.description": "Kas küpsistele seata turvalisuse lipp. Kui see on lubatud, ei tööta teenus HTTP kaudu.",
|
||||
"admin.config.general.show-home-page": "Kuva avaleht",
|
||||
"admin.config.general.show-home-page.description": "Kas kuvada avalehte",
|
||||
"admin.config.general.session-duration": "Seansi kestus",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Muuda oma logo laadides üles uus pilt. Pildi formaat peab olema PNG ja kuju 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Vali pilt",
|
||||
"admin.config.email.enable-share-email-recipients": "Luba e-posti teavitused jagamise saajatele",
|
||||
"admin.config.email.enable-share-email-recipients.description": "Kas lubada e-posti teavitusi jagamise saajatele. Lubage ainult, kui SMTP on aktiveeritud.",
|
||||
"admin.config.email.share-recipients-subject": "Jagamise saajate pealkiri",
|
||||
"admin.config.email.share-recipients-subject.description": "Pealkiri mis saadetakse jagamise saajatele.",
|
||||
"admin.config.email.share-recipients-message": "Jagamise saajate sõnum",
|
||||
"admin.config.email.share-recipients-message.description": "Sõnum, mis saadetakse jagamise saajatele. Kasutatavad muutujad:\n {creator} - jagamise looja kasutajanimi\n {creatorEmail} - jagamise looja e-post\n {shareUrl} - jagamise URL\n {desc} - jagamise kirjeldus\n {expires} - jagamise aegumiskuupäev\n Need muutujad asendatakse vastavate väärtustega.",
|
||||
"admin.config.email.reverse-share-subject": "Tagasijagamise Pealkiri",
|
||||
"admin.config.email.reverse-share-subject.description": "Pealkiri mis saadetakse kui keegi loob jagamise sinu tagasijagamise lingiga.",
|
||||
"admin.config.email.reverse-share-message": "Tagasijagamise sõnum",
|
||||
"admin.config.email.reverse-share-message.description": "Sõnum mis saadetakse kui keegi loob jagamise sinu tagasijagamise lingiga. {shareUrl} asendatakse looja nime ja jagamise URL-iga.",
|
||||
"admin.config.email.reset-password-subject": "Parooli lähtestamise Pealkiri",
|
||||
"admin.config.email.reset-password-subject.description": "Pealkiri mis saadetakse kui kasutaja taotleb parooli lähtestamist.",
|
||||
"admin.config.email.reset-password-message": "Parooli lähtestamise sõnum",
|
||||
"admin.config.email.reset-password-message.description": "Sõnum mis saadetakse kui kasutaja taotleb parooli lähtestamist. {url} asendatakse parooli lähtestamise URL-iga.",
|
||||
"admin.config.email.invite-subject": "Kutse pealkiri",
|
||||
"admin.config.email.invite-subject.description": "Pealkiri mis saadetakse kui administraator kutsub kasutajat.",
|
||||
"admin.config.email.invite-message": "Kutse sõnum",
|
||||
"admin.config.email.invite-message.description": "Sõnum mis saadetakse kui administraator kutsub kasutajat. {url} asendatakse kutse URL-iga, {email} e-posti aadressiga ja {password} kasutaja parooliga.",
|
||||
"admin.config.share.allow-registration": "Luba registreerimine",
|
||||
"admin.config.share.allow-registration.description": "Kas registreerimine on lubatud",
|
||||
"admin.config.share.allow-unauthenticated-shares": "Luba autentimata jagamised",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Kas autentimata kasutajad saavad jagamisi luua",
|
||||
"admin.config.share.max-expiration": "Maksimaalne aegumisaeg",
|
||||
"admin.config.share.max-expiration.description": "Maksimaalne jagamise aegumisaeg. Määra 0, et lubada piiramatu aegumisaeg.",
|
||||
"admin.config.share.share-id-length": "Vaikimisi jagamise ID pikkus",
|
||||
"admin.config.share.share-id-length.description": "Vaikimisi pikkus jagamise genereeritud ID jaoks. Seda väärtust kasutatakse ka tagasijagamise linkide loomiseks. Väärtust alla 8 ei peeta turvaliseks.",
|
||||
"admin.config.share.max-size": "Maksimaalne suurus",
|
||||
"admin.config.share.max-size.description": "Maksimaalne jagamise suurus",
|
||||
"admin.config.share.zip-compression-level": "Zip tihendustase",
|
||||
"admin.config.share.zip-compression-level.description": "Reguleeri tihendustaset, et leida tasakaal faili suuruse ja tihendamise kiiruse vahel. Kehtivad väärtused jäävad vahemikku 0 kuni 9, kus 0 tähendab mitte tihendamist ja 9 maksimaalset tihendamist. ",
|
||||
"admin.config.share.chunk-size": "Andmeploki suurus",
|
||||
"admin.config.share.chunk-size.description": "Reguleeri üleslaadimiseks kasutatavate andmeplokkide suurust, et saavutada efektiivsus ja töökindlus vastavalt sinu internetiühendusele. Väiksemad plokid võivad ebastabiilsete ühenduste korral parandada üleslaadimise edukust, samas kui suuremad plokid muudavad üleslaadimise kiiremaks stabiilsete ühenduste korral.",
|
||||
"admin.config.share.auto-open-share-modal": "Ava jagamise loomise aken automaatselt",
|
||||
"admin.config.share.auto-open-share-modal.description": "Jagamise loomise aken avaneb automaatselt kui kasutaja valib failid nii, et ei pea nuppu käsitsi klõpsama.",
|
||||
"admin.config.smtp.enabled": "Luba",
|
||||
"admin.config.smtp.enabled.description": "Kas SMTP on lubatud. Sea see tõeks ainult siis, kui oled sisestanud oma SMTP serveri hosti, pordi, e-posti, kasutajanime ja parooli.",
|
||||
"admin.config.smtp.host": "Host",
|
||||
"admin.config.smtp.host.description": "SMTP serveri host",
|
||||
"admin.config.smtp.port": "Port",
|
||||
"admin.config.smtp.port.description": "SMTP serveri port",
|
||||
"admin.config.smtp.email": "E-post",
|
||||
"admin.config.smtp.email.description": "E-posti aadress kust kirjad saadetakse",
|
||||
"admin.config.smtp.username": "Kasutajanimi",
|
||||
"admin.config.smtp.username.description": "SMTP serveri kasutajanimi",
|
||||
"admin.config.smtp.password": "Parool",
|
||||
"admin.config.smtp.password.description": "SMTP serveri parool",
|
||||
"admin.config.smtp.button.test": "Saada test e-kiri",
|
||||
"admin.config.smtp.allow-unauthorized-certificates": "Usalda volitamata SMTP serveri sertifikaate",
|
||||
"admin.config.smtp.allow-unauthorized-certificates.description": "Sea see tõeks ainult siis, kui pead usaldama iseallkirjastatud sertifikaate.",
|
||||
"admin.config.oauth.allow-registration": "Luba registreerimine",
|
||||
"admin.config.oauth.allow-registration.description": "Luba kasutajatel registreerida sotsiaalmeedia sisselogimise kaudu",
|
||||
"admin.config.oauth.ignore-totp": "Ignoreeri TOTP-i",
|
||||
"admin.config.oauth.ignore-totp.description": "Kas ignoreerida TOTP-i kui kasutaja kasutab sotsiaalset sisselogimist.",
|
||||
"admin.config.oauth.disable-password": "Keela parooliga sisselogimine",
|
||||
"admin.config.oauth.disable-password.description": "Kas keelata parooliga sisselogimine\nVeendu, et OAuth pakkuja on korralikult seadistatud enne selle aktiveerimist, et vältida juurdepääsu lukustamist.",
|
||||
"admin.config.oauth.github-enabled": "GitHub",
|
||||
"admin.config.oauth.github-enabled.description": "Kas GitHub sisselogimine on lubatud",
|
||||
"admin.config.oauth.github-client-id": "GitHub kliendi ID",
|
||||
"admin.config.oauth.github-client-id.description": "GitHub OAuth rakenduse kliendi ID",
|
||||
"admin.config.oauth.github-client-secret": "GitHub kliendi saladus",
|
||||
"admin.config.oauth.github-client-secret.description": "GitHub OAuth rakenduse kliendi saladus",
|
||||
"admin.config.oauth.google-enabled": "Google",
|
||||
"admin.config.oauth.google-enabled.description": "Kas Google sisselogimine on lubatud",
|
||||
"admin.config.oauth.google-client-id": "Google kliendi ID",
|
||||
"admin.config.oauth.google-client-id.description": "Google OAuth rakenduse kliendi ID",
|
||||
"admin.config.oauth.google-client-secret": "Google kliendi saladus",
|
||||
"admin.config.oauth.google-client-secret.description": "Google OAuth rakenduse kliendi saladus",
|
||||
"admin.config.oauth.microsoft-enabled": "Microsoft",
|
||||
"admin.config.oauth.microsoft-enabled.description": "Kas Microsofti sisselogimine on lubatud",
|
||||
"admin.config.oauth.microsoft-tenant": "Microsofti tenant",
|
||||
"admin.config.oauth.microsoft-tenant.description": "Microsoft OAuth rakenduse tenant ID\ncommon: Kasutajad, kellel on nii isiklik Microsofti konto kui ka töö- või koolikonto Microsoft Entra ID-s, saavad rakendusse sisse logida. organizations: Ainult töö- või koolikontoga kasutajad saavad sisse logida.\nconsumers: Ainult isikliku Microsofti kontoga kasutajad saavad sisse logida.\nMicrosoft Entra tenanti domeeninimi või GUID formaadis tenant ID: Ainult teatud tenanti kasutajad saavad sisse logida.",
|
||||
"admin.config.oauth.microsoft-client-id": "Microsoft kliendi ID",
|
||||
"admin.config.oauth.microsoft-client-id.description": "Microsoft OAuth rakenduse kliendi ID",
|
||||
"admin.config.oauth.microsoft-client-secret": "Microsoft kliendi saladus",
|
||||
"admin.config.oauth.microsoft-client-secret.description": "Microsoft OAuth rakenduse kliendi saladus",
|
||||
"admin.config.oauth.discord-enabled": "Discord",
|
||||
"admin.config.oauth.discord-enabled.description": "Kas Discord sisselogimine on lubatud",
|
||||
"admin.config.oauth.discord-limited-users": "Piiratud Discord kasutajad",
|
||||
"admin.config.oauth.discord-limited-users.description": "Piira sisselogimist ainult teatud kasutajatele nende Discord ID alusel. Jäta tühjaks, et keelata.",
|
||||
"admin.config.oauth.discord-limited-guild": "Piiratud Discord serveri ID",
|
||||
"admin.config.oauth.discord-limited-guild.description": "Piira sisselogimist ainult teatud serveri kasutajatele. Jäta tühjaks, et keelata.",
|
||||
"admin.config.oauth.discord-client-id": "Discord kliendi ID",
|
||||
"admin.config.oauth.discord-client-id.description": "Discord OAuth rakenduse kliendi ID",
|
||||
"admin.config.oauth.discord-client-secret": "Discord kliendi saladus",
|
||||
"admin.config.oauth.discord-client-secret.description": "Discord OAuth rakenduse kliendi saladus",
|
||||
"admin.config.oauth.oidc-enabled": "OpenID Connect",
|
||||
"admin.config.oauth.oidc-enabled.description": "Kas OpenID Connect sisselogimine on lubatud",
|
||||
"admin.config.oauth.oidc-discovery-uri": "OpenID Connect avastamis-URI",
|
||||
"admin.config.oauth.oidc-discovery-uri.description": "OpenID Connect OAuth rakenduse avastamis-URI",
|
||||
"admin.config.oauth.oidc-sign-out": "Logi välja OpenID Connectist",
|
||||
"admin.config.oauth.oidc-sign-out.description": "Kas 'Logi välja' nupp logib välja OpenID Connect pakkujast",
|
||||
"admin.config.oauth.oidc-scope": "OpenID Connect ulatus",
|
||||
"admin.config.oauth.oidc-scope.description": "Ulatus, mida tuleks OpenID Connect pakkujalt küsida.",
|
||||
"admin.config.oauth.oidc-username-claim": "OpenID Connect kasutajanime väide",
|
||||
"admin.config.oauth.oidc-username-claim.description": "Kasutajanime väide OpenID Connect ID tokenis. Jäta tühjaks kui sa ei tea mis seade see on.",
|
||||
"admin.config.oauth.oidc-role-path": "Tee rollideni OpenID Connect tokenis",
|
||||
"admin.config.oauth.oidc-role-path.description": "Peab olema kehtiv JMES tee, mis viitab rollide massiivile." + "Juurdepääsuõiguste haldamine OpenID Connecti rollide abil on soovitatav ainult siis, kui ühtegi muud identiteedipakkujat pole konfigureeritud ja parooliga sisselogimine on keelatud." + "Leave it blank if you don't know what this config is.",
|
||||
"admin.config.oauth.oidc-role-general-access": "OpenID Connect roll üldiseks juurdepääsuks",
|
||||
"admin.config.oauth.oidc-role-general-access.description": "Üldiseks juurdepääsuks nõutav roll. Kasutajal peab see roll olema, et ta saaks sisse logida." + "Jäta see tühjaks kui sa ei tea mis seade see on.",
|
||||
"admin.config.oauth.oidc-role-admin-access": "OpenID Connect roll admin juurdepääsuks",
|
||||
"admin.config.oauth.oidc-role-admin-access.description": "Üldiseks juurdepääsuks vajalik roll. Kasutaja peab selle rolli omama, et sisse logida. " + "Jäta see tühjaks kui sa ei tea mis seade see on",
|
||||
"admin.config.oauth.oidc-client-id": "OpenID Connect kliendi ID",
|
||||
"admin.config.oauth.oidc-client-id.description": "OpenID Connect OAuth rakenduse kliendi ID",
|
||||
"admin.config.oauth.oidc-client-secret": "OpenID Connect kliendi saladus",
|
||||
"admin.config.oauth.oidc-client-secret.description": "OpenID Connect OAuth rakenduse kliendi saladus",
|
||||
"admin.config.category.ldap": "LDAP",
|
||||
"admin.config.ldap.enabled": "Luba LDAP",
|
||||
"admin.config.ldap.enabled.description": "Kasutaja sisselogimiseks kasutada LDAP autentimist",
|
||||
"admin.config.ldap.url": "Serveri URL",
|
||||
"admin.config.ldap.url.description": "LDAP serveri URL",
|
||||
"admin.config.ldap.bind-dn": "Bind DN",
|
||||
"admin.config.ldap.bind-dn.description": "Vaikimisi kasutaja, mida kasutatakse kasutajate otsimiseks",
|
||||
"admin.config.ldap.bind-password": "Bind parool",
|
||||
"admin.config.ldap.bind-password.description": "Parool, mida kasutatakse kasutajate otsimiseks",
|
||||
"admin.config.ldap.search-base": "Kasutajate alus",
|
||||
"admin.config.ldap.search-base.description": "Põhikoht, kus kasutajaid otsitakse",
|
||||
"admin.config.ldap.search-query": "Kasutaja päring",
|
||||
"admin.config.ldap.search-query.description": "Kasutaja päring, mida kasutatakse LDAP kasutaja otsimiseks 'Kasutajate alus' alt. %username% saab kasutada kasutaja sisestuse kohatäitjana.",
|
||||
"admin.config.ldap.admin-groups": "Admin grupp",
|
||||
"admin.config.ldap.admin-groups.description": "Grupp, mis on vajalik admin juurdepääsuks.",
|
||||
"admin.config.ldap.field-name-member-of": "Kasutaja gruppide atribuut",
|
||||
"admin.config.ldap.field-name-member-of.description": "LDAP atribuut, mis näitab, millesse gruppi kasutaja kuulub. Seda kasutatakse admin grupi kontrollimisel.",
|
||||
"admin.config.ldap.field-name-email": "Kasutaja e-posti atribuut",
|
||||
"admin.config.ldap.field-name-email.description": "LDAP atribuut kasutaja e-posti aadressi jaoks.",
|
||||
"admin.config.notify.success": "Seaded edukalt uuendatud.",
|
||||
"admin.config.notify.logo-success": "Logo edukalt uuendatud. Veebilehe värskendamiseks võib kuluda paar minutit.",
|
||||
"admin.config.notify.no-changes": "Pole muudatusi mida salvestada.",
|
||||
"admin.config.category.s3": "S3",
|
||||
"admin.config.s3.enabled": "Lubatud",
|
||||
"admin.config.s3.enabled.description": "Kas S3-d tuleks kasutada jagatud failide salvestamiseks lokaalse failisüsteemi asemel.",
|
||||
"admin.config.s3.endpoint": "Endpoint",
|
||||
"admin.config.s3.endpoint.description": "S3 ämbri URL.",
|
||||
"admin.config.s3.region": "Regioon",
|
||||
"admin.config.s3.region.description": "S3 ämbri regioon.",
|
||||
"admin.config.s3.bucket-name": "Ämbri nimi",
|
||||
"admin.config.s3.bucket-name.description": "S3 ämbri nimi.",
|
||||
"admin.config.s3.bucket-path": "S3 ämbri tee",
|
||||
"admin.config.s3.bucket-path.description": "Vaikimisi tee, mida kasutatakse failide salvestamiseks S3 ämbris.",
|
||||
"admin.config.s3.key": "Võti",
|
||||
"admin.config.s3.key.description": "S3 ämbri võti.",
|
||||
"admin.config.s3.secret": "Saladus",
|
||||
"admin.config.s3.secret.description": "S3 ämbri saladus.",
|
||||
"admin.config.category.legal": "Juriidiline",
|
||||
"admin.config.legal.enabled": "Luba juriidilised teated",
|
||||
"admin.config.legal.enabled.description": "Kas kuvada linki kontaktandmetele ja privaatsuspoliitikale jaluses.",
|
||||
"admin.config.legal.imprint-text": "Kontaktandmete tekst",
|
||||
"admin.config.legal.imprint-text.description": "Tekst, mis kuvatakse kontaktandmetel. Toetab Markdowni. Jäta tühjaks, et lingida välisele kontaktandmete lehele.",
|
||||
"admin.config.legal.imprint-url": "Kontaktandmete URL",
|
||||
"admin.config.legal.imprint-url.description": "Kui sul on juba kontaktandmete leht saad selle siia linkida selle asemel, et kasutada tekstivälja.",
|
||||
"admin.config.legal.privacy-policy-text": "Privaatsuspoliitika tekst",
|
||||
"admin.config.legal.privacy-policy-text.description": "Tekst mis kuvatakse privaatsuspoliitikas. Toetab Markdowni. Jäta tühjaks, et lingida välisele privaatsuspoliitika lehele.",
|
||||
"admin.config.legal.privacy-policy-url": "Privaatsuspoliitika URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "Kui sul on juba privaatsuspoliitika leht saad selle siia linkida selle asemel, et kasutada tekstivälja.",
|
||||
// 404
|
||||
"404.description": "Ups, seda lehte ei eksisteeri.",
|
||||
"404.button.home": "Viia mind tagasi avalehele",
|
||||
// error
|
||||
"error.title": "Viga",
|
||||
"error.description": "Ups!",
|
||||
"error.button.back": "Mine tagasi",
|
||||
"error.msg.default": "Midagi läks valesti.",
|
||||
"error.msg.access_denied": "Sa tühistasid autentimisprotsessi, palun proovi uuesti.",
|
||||
"error.msg.expired_token": "Autentimisprotsess kestis liiga kaua, palun proovi uuesti.",
|
||||
"error.msg.invalid_token": "Sisemine viga",
|
||||
"error.msg.no_user": "Kasutajat, kes on seotud selle {0} kontoga ei eksisteeri.",
|
||||
"error.msg.no_email": "Ei saa sellest {0} kontost e-posti aadressi hankida.",
|
||||
"error.msg.already_linked": "See {0} konto on juba seotud teise kontoga.",
|
||||
"error.msg.not_linked": "See {0} konto pole veel ühegi kontoga seotud.",
|
||||
"error.msg.unverified_account": "See {0} konto on kinnitamata, palun proovi pärast kinnitamist uuesti.",
|
||||
"error.msg.user_not_allowed": "Sul ei ole luba sisse logida.",
|
||||
"error.msg.cannot_get_user_info": "Ei õnnestunud saada sinu kasutaja andmeid sellest {0} kontost.",
|
||||
"error.param.provider_github": "GitHub",
|
||||
"error.param.provider_google": "Google",
|
||||
"error.param.provider_microsoft": "Microsoft",
|
||||
"error.param.provider_discord": "Discord",
|
||||
"error.param.provider_oidc": "OpenID Connect",
|
||||
// Common translations
|
||||
"common.button.save": "Salvesta",
|
||||
"common.button.create": "Loo",
|
||||
"common.button.submit": "Esita",
|
||||
"common.button.delete": "Kustuta",
|
||||
"common.button.cancel": "Tühista",
|
||||
"common.button.confirm": "Kinnita",
|
||||
"common.button.disable": "Lülita välja",
|
||||
"common.button.share": "Jaga",
|
||||
"common.button.generate": "Genereeri",
|
||||
"common.button.done": "Valmis",
|
||||
"common.text.link": "Link",
|
||||
"common.text.navigate-to-link": "Külastage linki",
|
||||
"common.text.or": "või",
|
||||
"common.text.redirecting": "Ümbersuunamine...",
|
||||
"common.button.go-back": "Mine tagasi",
|
||||
"common.button.go-home": "Mine avalehele",
|
||||
"common.notify.copied": "Sinu link kopeeriti lõikelauale",
|
||||
"common.notify.copied-link": "Sinu link kopeeriti lõikelauale",
|
||||
"common.success": "Õnnestus",
|
||||
"common.error": "Viga",
|
||||
"common.error.unknown": "Tundmatu viga",
|
||||
"common.error.invalid-email": "Vigane e-posti aadress",
|
||||
"common.error.too-short": "Peab olema vähemalt {length} tähemärki",
|
||||
"common.error.too-long": "Peab olema maksimaalselt {length} tähemärki",
|
||||
"common.error.number-too-small": "Peab olema vähemalt {min}",
|
||||
"common.error.number-too-large": "Peab olema maksimaalselt {max}",
|
||||
"common.error.exact-length": "Peab olema täpselt {length} tähemärki",
|
||||
"common.error.invalid-number": "Peab olema number",
|
||||
"common.error.field-required": "See väli on kohustuslik"
|
||||
};
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.modal.password.title": "Salasana vaaditaan",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Salasana",
|
||||
"share.modal.error.invalid-password": "Virheellinen salasana",
|
||||
"share.button.download-all": "Lataa kaikki",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Asetukset",
|
||||
"admin.config.category.general": "Yleiset",
|
||||
"admin.config.category.share": "Jako",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Näytä kotisivu",
|
||||
"admin.config.general.show-home-page.description": "Näytetäänkö kotisivu vai ei",
|
||||
"admin.config.general.session-duration": "Session Duration",
|
||||
"admin.config.general.session-duration.description": "Time in hours after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Muuta logoa lataamalla uusi kuva. Kuvan on oltava PNG ja sen on oltava formaatti 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Valitse kuva",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Partage privé",
|
||||
"share.error.access-denied.description": "Le compte actuel n'a pas la permission d'accéder à ce partage",
|
||||
"share.modal.password.title": "Mot de passe requis",
|
||||
"share.modal.password.description": "Veuillez entrer le mot de passe d'accès à ce partage.",
|
||||
"share.modal.password.description": "Veuillez entrer le mot de passe pour accéder à ce partage.",
|
||||
"share.modal.password": "Mot de passe",
|
||||
"share.modal.error.invalid-password": "Mot de passe incorrect",
|
||||
"share.button.download-all": "Télécharger tout",
|
||||
@@ -296,12 +296,14 @@ export default {
|
||||
"share.edit.notify.save-success": "Partage mis à jour avec succès",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "Mentions légales",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "Politique de confidentialité",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Paramètres",
|
||||
"admin.config.category.general": "Général",
|
||||
"admin.config.category.share": "Partage",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Afficher la page d’accueil",
|
||||
"admin.config.general.show-home-page.description": "Afficher ou non la page d’accueil",
|
||||
"admin.config.general.session-duration": "Durée de la session",
|
||||
"admin.config.general.session-duration.description": "Nombre d’heures après lesquelles un utilisateur doit se reconnecter (par défaut : 3 mois).",
|
||||
"admin.config.general.session-duration.description": "Temps après lequel un utilisateur doit se reconnecter (par défaut : 3 mois).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Changez de logo en envoyant une nouvelle image. L’image doit être au format PNG et doit avoir un ratio 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Sélectionner une image",
|
||||
@@ -344,7 +346,7 @@ export default {
|
||||
"admin.config.share.allow-unauthenticated-shares": "Autoriser les partages anonymes",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Permet aux visiteurs de créer des partages",
|
||||
"admin.config.share.max-expiration": "Échéance",
|
||||
"admin.config.share.max-expiration.description": "Maximum share expiration. Set to 0 to allow unlimited expiration.",
|
||||
"admin.config.share.max-expiration.description": "Expiration du partage en heures. Réglez sur 0 pour qu'il n'expire jamais.",
|
||||
"admin.config.share.share-id-length": "Taille de l'identifiant généré",
|
||||
"admin.config.share.share-id-length.description": "Taille par défaut de l'identifiant généré pour un partage. Cette valeur est aussi utilisée pour générer les liens des partages inverses. Une valeur inférieure à 8 n'est pas considérée sûre.",
|
||||
"admin.config.share.max-size": "Taille max",
|
||||
@@ -463,17 +465,17 @@ export default {
|
||||
"admin.config.s3.key.description": "La clé qui vous permet d'accéder au bucket S3.",
|
||||
"admin.config.s3.secret": "Secret",
|
||||
"admin.config.s3.secret.description": "Le secret qui vous permet d'accéder au bucket S3.",
|
||||
"admin.config.category.legal": "Legal",
|
||||
"admin.config.legal.enabled": "Enable legal notices",
|
||||
"admin.config.legal.enabled.description": "Whether to show a link to imprint and privacy policy in the footer.",
|
||||
"admin.config.legal.imprint-text": "Imprint text",
|
||||
"admin.config.legal.imprint-text.description": "The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.",
|
||||
"admin.config.legal.imprint-url": "Imprint URL",
|
||||
"admin.config.legal.imprint-url.description": "If you already have an imprint page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.privacy-policy-text": "Privacy policy text",
|
||||
"admin.config.legal.privacy-policy-text.description": "The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.",
|
||||
"admin.config.legal.privacy-policy-url": "Privacy policy URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "If you already have a privacy policy page you can link it here instead of using the text field.",
|
||||
"admin.config.category.legal": "Juridique",
|
||||
"admin.config.legal.enabled": "Activer les mentions légales",
|
||||
"admin.config.legal.enabled.description": "Afficher/Masquer dans le pied de page un lien vers les mentions légales et la politique de confidentialité.",
|
||||
"admin.config.legal.imprint-text": "Texte des mentions légales",
|
||||
"admin.config.legal.imprint-text.description": "Le texte qui doit être affiché dans les mentions légales. Supporte le Markdown. Laissez vide pour mettre un lien vers une page de mentions légales externe.",
|
||||
"admin.config.legal.imprint-url": "URL des mentions légales",
|
||||
"admin.config.legal.imprint-url.description": "Si vous avez déjà une page de mentions légales, vous pouvez indiquer son URL ici au lieu d'utiliser le champ de texte.",
|
||||
"admin.config.legal.privacy-policy-text": "Texte de la politique de confidentialité",
|
||||
"admin.config.legal.privacy-policy-text.description": "Le texte qui doit être affiché dans la politique de confidentialité. Supporte le Markdown. Laissez vide pour mettre un lien vers une page de politique de confidentialité externe.",
|
||||
"admin.config.legal.privacy-policy-url": "URL de la politique de confidentialité",
|
||||
"admin.config.legal.privacy-policy-url.description": "Si vous avez déjà une page de politique de confidentialité, vous pouvez indiquer son URL ici au lieu d'utiliser le champ de texte.",
|
||||
// 404
|
||||
"404.description": "Désolé, mais cette page n’existe pas.",
|
||||
"404.button.home": "Retour à l’accueil",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Privatno dijeljenje",
|
||||
"share.error.access-denied.description": "Trenutni račun nema dozvolu za pristup ovom dijeljenju.",
|
||||
"share.modal.password.title": "Lozinka je potrebna",
|
||||
"share.modal.password.description": "Molimo unesite lozinku za pristup ovom dijeljenju.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Lozinka",
|
||||
"share.modal.error.invalid-password": "Neispravna lozinka",
|
||||
"share.button.download-all": "Preuzmi sve",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Konfiguracija",
|
||||
"admin.config.category.general": "Opće",
|
||||
"admin.config.category.share": "Dijeljenje",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Prikaži početnu stranicu",
|
||||
"admin.config.general.show-home-page.description": "Želite li prikazati početnu stranicu",
|
||||
"admin.config.general.session-duration": "Trajanje sesije",
|
||||
"admin.config.general.session-duration.description": "Vrijeme u satima nakon kojeg se korisnik mora ponovno prijaviti (zadano: 3 mjeseca).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Promijenite svoj logotip učitavanjem nove slike. Slika mora biti PNG i imati format 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Odaberite sliku",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Privát megosztás",
|
||||
"share.error.access-denied.description": "Ez a fiók nem rendelkezik jogosultsággal a megosztás eléréséhez",
|
||||
"share.modal.password.title": "Jelszó szükséges",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Jelszó",
|
||||
"share.modal.error.invalid-password": "Érvénytelen jelszó",
|
||||
"share.button.download-all": "Mindet letölti",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Konfiguráció",
|
||||
"admin.config.category.general": "Általános",
|
||||
"admin.config.category.share": "Megosztás",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Kezdőlap mutatása",
|
||||
"admin.config.general.show-home-page.description": "A kezdőlap mutatásának ki- és bekapcsolása",
|
||||
"admin.config.general.session-duration": "Munkamenet időtartama",
|
||||
"admin.config.general.session-duration.description": "Annak az időtartamnak a megadása, amit követően a felhasználónak ismét be kell jelentkeznie (alapérték: 3 hónap).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logó",
|
||||
"admin.config.general.logo.description": "A logó személyessé tételéhez töltsön fel egy új képet. A formátum legyen PNG, az oldalarány 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Kép kiválasztása",
|
||||
|
||||
@@ -13,7 +13,7 @@ export default {
|
||||
// /
|
||||
"home.title": "Una piattaforma di condivisione file <h>self-hosted</h>.",
|
||||
"home.description": "Vuoi davvero dare i tuoi file personali in mano a terzi come WeTransfer?",
|
||||
"home.bullet.a.name": "Self-hosted",
|
||||
"home.bullet.a.name": "Self-Hosted",
|
||||
"home.bullet.a.description": "Configura Pingvin Share sul tuo server.",
|
||||
"home.bullet.b.name": "Privacy",
|
||||
"home.bullet.b.description": "I tuoi file sono tuoi e non saranno mai accessibili da terze parti.",
|
||||
@@ -29,7 +29,7 @@ export default {
|
||||
"signin.input.email-or-username": "Email o nome utente",
|
||||
"signin.input.email-or-username.placeholder": "La tua email o nome utente",
|
||||
"signin.input.password": "Password",
|
||||
"signin.input.password.placeholder": "Password",
|
||||
"signin.input.password.placeholder": "La tua password",
|
||||
"signin.button.submit": "Accedi",
|
||||
"signIn.notify.totp-required.title": "Autenticazione a due fattori richiesta",
|
||||
"signIn.notify.totp-required.description": "Inserisci il tuo codice di autenticazione a due fattori",
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Condivisione privata",
|
||||
"share.error.access-denied.description": "L' account non ha il premesso di accedere a questa condivisione",
|
||||
"share.modal.password.title": "Password richiesta",
|
||||
"share.modal.password.description": "Inserisci la password per accedere a questa condivisione.",
|
||||
"share.modal.password.description": "Per favore inserisci la password per accedere a questa condivisione.",
|
||||
"share.modal.password": "Password",
|
||||
"share.modal.error.invalid-password": "Password non valida",
|
||||
"share.button.download-all": "Scarica tutto",
|
||||
@@ -296,12 +296,14 @@ export default {
|
||||
"share.edit.notify.save-success": "Condivisione aggiornata correttamente",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "Note legali",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "Informativa sulla privacy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Configurazione",
|
||||
"admin.config.category.general": "Generale",
|
||||
"admin.config.category.share": "Condivisioni",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Visualizza Home Page",
|
||||
"admin.config.general.show-home-page.description": "Indica se mostrare la home page",
|
||||
"admin.config.general.session-duration": "Durata della sessione",
|
||||
"admin.config.general.session-duration.description": "Tempo in ore dopo il quale un utente deve accedere nuovamente (default: 3 mesi).",
|
||||
"admin.config.general.session-duration.description": "Tempo dopo il quale un utente deve accedere di nuovo (default: tre mesi).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Cambia il tuo logo caricando una nuova immagine. L'immagine deve essere un PNG e dovrebbe avere il formato 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Scegli un'immagine",
|
||||
@@ -344,7 +346,7 @@ export default {
|
||||
"admin.config.share.allow-unauthenticated-shares": "Consenti condivisioni non autenticate",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Indica se gli utenti non autenticati possono creare condivisioni",
|
||||
"admin.config.share.max-expiration": "Scadenza massima",
|
||||
"admin.config.share.max-expiration.description": "Maximum share expiration. Set to 0 to allow unlimited expiration.",
|
||||
"admin.config.share.max-expiration.description": "Scadenza massima della condivisione. Impostare a 0 per consentire la scadenza illimitata.",
|
||||
"admin.config.share.share-id-length": "Lunghezza ID condivisione predefinita",
|
||||
"admin.config.share.share-id-length.description": "Lunghezza predefinita dell'ID generato per una condivisione. Questo valore viene utilizzato anche per generare collegamenti per condivisioni inverse. Un valore inferiore a 8 non è considerato sicuro.",
|
||||
"admin.config.share.max-size": "Dim. massima",
|
||||
@@ -463,17 +465,17 @@ export default {
|
||||
"admin.config.s3.key.description": "La chiave che consente di accedere al bucket S3.",
|
||||
"admin.config.s3.secret": "Parola chiave",
|
||||
"admin.config.s3.secret.description": "La parola chiave che consente di accedere al bucket S3.",
|
||||
"admin.config.category.legal": "Legal",
|
||||
"admin.config.legal.enabled": "Enable legal notices",
|
||||
"admin.config.legal.enabled.description": "Whether to show a link to imprint and privacy policy in the footer.",
|
||||
"admin.config.legal.imprint-text": "Imprint text",
|
||||
"admin.config.legal.imprint-text.description": "The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.",
|
||||
"admin.config.legal.imprint-url": "Imprint URL",
|
||||
"admin.config.legal.imprint-url.description": "If you already have an imprint page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.privacy-policy-text": "Privacy policy text",
|
||||
"admin.config.legal.privacy-policy-text.description": "The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.",
|
||||
"admin.config.legal.privacy-policy-url": "Privacy policy URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "If you already have a privacy policy page you can link it here instead of using the text field.",
|
||||
"admin.config.category.legal": "Legale",
|
||||
"admin.config.legal.enabled": "Abilita le notifiche legali",
|
||||
"admin.config.legal.enabled.description": "Indica se mostrare o meno un link alle informative legali e sulla privacy a piè di pagina.",
|
||||
"admin.config.legal.imprint-text": "Testo dell'informativa",
|
||||
"admin.config.legal.imprint-text.description": "Il testo che deve essere mostrato nell'informativa. Supporta il linguaggio Markdown. Lascia vuoto per collegare una pagina informativa esterna.",
|
||||
"admin.config.legal.imprint-url": "URL dell'informativa",
|
||||
"admin.config.legal.imprint-url.description": "Nel caso avessi già una pagina di informativa puoi collegarla qui invece di usare il campo di testo.",
|
||||
"admin.config.legal.privacy-policy-text": "Testo dell'informativa sulla privacy",
|
||||
"admin.config.legal.privacy-policy-text.description": "Il testo che dovrebbe essere mostrato nell'informativa sulla privacy. Supporta il linguaggio Markdown. Lascia vuoto per collegare una pagina esterna inerente la politica sulla privacy.",
|
||||
"admin.config.legal.privacy-policy-url": "URL dell'informativa sulla privacy",
|
||||
"admin.config.legal.privacy-policy-url.description": "Nel caso avessi già una pagina di informativa sulla privacy, puoi collegarla qui invece di usare il campo di testo.",
|
||||
// 404
|
||||
"404.description": "Ops, questa pagina non esiste.",
|
||||
"404.button.home": "Riportami a casa",
|
||||
|
||||
@@ -124,9 +124,9 @@ export default {
|
||||
"account.shares.table.expiresAt": "有効期限",
|
||||
"account.shares.table.createdAt": "作成日",
|
||||
"account.shares.table.size": "サイズ",
|
||||
"account.shares.table.password-protected": "Password protected",
|
||||
"account.shares.table.visitor-count": "{count} of {max}",
|
||||
"account.shares.table.expiry-never": "Never",
|
||||
"account.shares.table.password-protected": "パスワードで保護されています",
|
||||
"account.shares.table.visitor-count": "{count} / {max}",
|
||||
"account.shares.table.expiry-never": "なし",
|
||||
"account.shares.modal.share-informations": "共有情報",
|
||||
"account.shares.modal.share-link": "共有リンク",
|
||||
"account.shares.modal.delete.title": "共有を削除: {share}",
|
||||
@@ -296,12 +296,14 @@ export default {
|
||||
"share.edit.notify.save-success": "共有の更新に成功しました",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "インプリント",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "プライバシーポリシー",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "設定",
|
||||
"admin.config.category.general": "一般",
|
||||
"admin.config.category.share": "共有",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "ホームページを表示する",
|
||||
"admin.config.general.show-home-page.description": "ホームページを表示するかどうか選択",
|
||||
"admin.config.general.session-duration": "セッション期間",
|
||||
"admin.config.general.session-duration.description": "ユーザーが再度ログインする必要がある時間(時間単位)(デフォルト: 3 か月)。",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "ロゴ",
|
||||
"admin.config.general.logo.description": "新しい画像をアップロードしてロゴを変更できます。画像は、PNG形式でアスペクト比が1:1である必要があります。",
|
||||
"admin.config.general.logo.placeholder": "画像を選択",
|
||||
@@ -344,7 +346,7 @@ export default {
|
||||
"admin.config.share.allow-unauthenticated-shares": "ログインしていない状態での共有を許可する",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "ログインしていないユーザーに共有の作成を許可するかどうかを選択してください。",
|
||||
"admin.config.share.max-expiration": "有効期限の上限",
|
||||
"admin.config.share.max-expiration.description": "Maximum share expiration. Set to 0 to allow unlimited expiration.",
|
||||
"admin.config.share.max-expiration.description": "共有の最大有効期限。無期限を許可するには0に設定します。",
|
||||
"admin.config.share.share-id-length": "デフォルトの共有IDの長さ",
|
||||
"admin.config.share.share-id-length.description": "共有の生成されたIDのデフォルトの長さ。この値はファイルリクエストのリンクを生成するためにも使用されます。8未満の値は安全ではないと見なされます。",
|
||||
"admin.config.share.max-size": "最大ファイルサイズ",
|
||||
@@ -463,17 +465,17 @@ export default {
|
||||
"admin.config.s3.key.description": "S3バケットにアクセスするためのキー。",
|
||||
"admin.config.s3.secret": "秘密",
|
||||
"admin.config.s3.secret.description": "S3バケットにアクセスするための秘密。",
|
||||
"admin.config.category.legal": "Legal",
|
||||
"admin.config.legal.enabled": "Enable legal notices",
|
||||
"admin.config.legal.enabled.description": "Whether to show a link to imprint and privacy policy in the footer.",
|
||||
"admin.config.legal.imprint-text": "Imprint text",
|
||||
"admin.config.legal.imprint-text.description": "The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.",
|
||||
"admin.config.legal.imprint-url": "Imprint URL",
|
||||
"admin.config.legal.imprint-url.description": "If you already have an imprint page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.privacy-policy-text": "Privacy policy text",
|
||||
"admin.config.legal.privacy-policy-text.description": "The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.",
|
||||
"admin.config.legal.privacy-policy-url": "Privacy policy URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "If you already have a privacy policy page you can link it here instead of using the text field.",
|
||||
"admin.config.category.legal": "法的事項",
|
||||
"admin.config.legal.enabled": "法的通知を有効にする",
|
||||
"admin.config.legal.enabled.description": "フッターにインプリントとプライバシーポリシーへのリンクを表示するか。",
|
||||
"admin.config.legal.imprint-text": "インプリントテキスト",
|
||||
"admin.config.legal.imprint-text.description": "インプリントに表示されるテキスト。Markdownをサポートします。外部のインプリント ページにリンクするには空白のままにします。",
|
||||
"admin.config.legal.imprint-url": "インプリントのURL",
|
||||
"admin.config.legal.imprint-url.description": "すでにインプリント ページがある場合は、テキストフィールドを使用する代わりにここにリンクすることができます。",
|
||||
"admin.config.legal.privacy-policy-text": "プライバシーポリシーのテキスト",
|
||||
"admin.config.legal.privacy-policy-text.description": "プライバシーポリシーに表示されるテキスト。Markdownをサポートします。外部のプライバシーポリシーにリンクするには空白のままにします。",
|
||||
"admin.config.legal.privacy-policy-url": "プライバシーポリシーのURL",
|
||||
"admin.config.legal.privacy-policy-url.description": "すでにプライバシーポリシーがある場合は、テキストフィールドを使用する代わりにここにリンクすることができます。",
|
||||
// 404
|
||||
"404.description": "ページが見つかりません。",
|
||||
"404.button.home": "ホームに戻る",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.modal.password.title": "비밀번호 필요",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "비밀번호",
|
||||
"share.modal.error.invalid-password": "잘못된 비밀번호",
|
||||
"share.button.download-all": "모두 다운로드",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "구성",
|
||||
"admin.config.category.general": "일반",
|
||||
"admin.config.category.share": "공유",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "홈 페이지 표시",
|
||||
"admin.config.general.show-home-page.description": "홈 페이지를 표시할지 여부",
|
||||
"admin.config.general.session-duration": "세션 기간",
|
||||
"admin.config.general.session-duration.description": "사용자가 다시 로그인해야 하는 시간 (기본값: 3개월)",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "로고",
|
||||
"admin.config.general.logo.description": "새 이미지를 업로드하여 로고를 변경하십시오. 이미지는 PNG여야 하며 1:1 비율이어야 합니다.",
|
||||
"admin.config.general.logo.placeholder": "이미지 선택",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "Dit account heeft geen toestemming om toegang te krijgen tot deze share",
|
||||
"share.modal.password.title": "Wachtwoord vereist",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Wachtwoord",
|
||||
"share.modal.error.invalid-password": "Ongeldig wachtwoord",
|
||||
"share.button.download-all": "Alles downloaden",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Configuratie",
|
||||
"admin.config.category.general": "Algemeen",
|
||||
"admin.config.category.share": "Delen",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Toon startpagina",
|
||||
"admin.config.general.show-home-page.description": "Toon of verberg de home pagina",
|
||||
"admin.config.general.session-duration": "Sessieduur",
|
||||
"admin.config.general.session-duration.description": "Tijd in uren waarna een gebruiker zich opnieuw moet aanmelden (standaard: 3 maanden).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Verander uw logo door een nieuwe afbeelding te uploaden. De afbeelding moet PNG zijn en het formaat moet 1:1 hebben.",
|
||||
"admin.config.general.logo.placeholder": "Afbeelding kiezen",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Prywatne udostępnienie",
|
||||
"share.error.access-denied.description": "Bieżące konto nie ma uprawnień dostępu do tego udostępnienia",
|
||||
"share.modal.password.title": "Wymagane hasło",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Hasło",
|
||||
"share.modal.error.invalid-password": "Hasło jest nieprawidłowe",
|
||||
"share.button.download-all": "Pobierz wszystko",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Konfiguracja",
|
||||
"admin.config.category.general": "Ogólne",
|
||||
"admin.config.category.share": "Udostępnij",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Pokaż stronę główną",
|
||||
"admin.config.general.show-home-page.description": "Czy wyświetlać stronę główną",
|
||||
"admin.config.general.session-duration": "Czas trwania sesji",
|
||||
"admin.config.general.session-duration.description": "Czas w godzinach, po którym użytkownik musi zalogować się ponownie (domyślnie: 3 miesiące).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Zmień logo, przesyłając nowy obraz. Obraz musi być plikiem PNG i mieć proporcje 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Wybierz obraz",
|
||||
|
||||
@@ -124,8 +124,8 @@ export default {
|
||||
"account.shares.table.expiresAt": "Expira em",
|
||||
"account.shares.table.createdAt": "Criada em",
|
||||
"account.shares.table.size": "Tamanho",
|
||||
"account.shares.table.password-protected": "Password protected",
|
||||
"account.shares.table.visitor-count": "{count} of {max}",
|
||||
"account.shares.table.password-protected": "Protegido por senha",
|
||||
"account.shares.table.visitor-count": "{count} de {max}",
|
||||
"account.shares.table.expiry-never": "Nunca",
|
||||
"account.shares.modal.share-informations": "Informações do compartilhamento",
|
||||
"account.shares.modal.share-link": "Link do compartilhamento",
|
||||
@@ -296,12 +296,14 @@ export default {
|
||||
"share.edit.notify.save-success": "Compartilhamento atualizado com sucesso",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "Termos Legais",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "Política de Privacidade",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Configuração",
|
||||
"admin.config.category.general": "Geral",
|
||||
"admin.config.category.share": "Compartilhamento",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Mostrar a página inicial",
|
||||
"admin.config.general.show-home-page.description": "Mostrar ou não a página inicial",
|
||||
"admin.config.general.session-duration": "Duração de sessão",
|
||||
"admin.config.general.session-duration.description": "Tempo em horas após o qual um usuário deve iniciar a sessão novamente (padrão: 3 meses).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Alterar o seu logo carregando uma nova imagem. A imagem deve ser PNG e deve ter o formato 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Escolhe uma imagem",
|
||||
@@ -344,7 +346,7 @@ export default {
|
||||
"admin.config.share.allow-unauthenticated-shares": "Permitir compartilhamentos sem autenticação",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Se usuários não autenticados podem criar compartilhamentos",
|
||||
"admin.config.share.max-expiration": "Expiração máxima",
|
||||
"admin.config.share.max-expiration.description": "Maximum share expiration. Set to 0 to allow unlimited expiration.",
|
||||
"admin.config.share.max-expiration.description": "Expiração máxima de compartilhamento. Defina 0 para permitir expiração ilimitada.",
|
||||
"admin.config.share.share-id-length": "Comprimento da ID do compartilhamento padrão",
|
||||
"admin.config.share.share-id-length.description": "Comprimento padrão para a ID gerada de um compartilhamento. Este valor também é usado para gerar links para ações reversas. Um valor abaixo de 8 não é considerado seguro.",
|
||||
"admin.config.share.max-size": "Tamanho máximo",
|
||||
@@ -463,17 +465,17 @@ export default {
|
||||
"admin.config.s3.key.description": "A chave que permite a você acessar o bucket S3.",
|
||||
"admin.config.s3.secret": "Segredo",
|
||||
"admin.config.s3.secret.description": "O segredo que permite a você acessar o bucket S3.",
|
||||
"admin.config.category.legal": "Legal",
|
||||
"admin.config.legal.enabled": "Enable legal notices",
|
||||
"admin.config.legal.enabled.description": "Whether to show a link to imprint and privacy policy in the footer.",
|
||||
"admin.config.legal.imprint-text": "Imprint text",
|
||||
"admin.config.legal.imprint-text.description": "The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.",
|
||||
"admin.config.legal.imprint-url": "Imprint URL",
|
||||
"admin.config.legal.imprint-url.description": "If you already have an imprint page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.privacy-policy-text": "Privacy policy text",
|
||||
"admin.config.legal.privacy-policy-text.description": "The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.",
|
||||
"admin.config.legal.privacy-policy-url": "Privacy policy URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "If you already have a privacy policy page you can link it here instead of using the text field.",
|
||||
"admin.config.category.legal": "Aviso legal",
|
||||
"admin.config.legal.enabled": "Habilitar avisos legais",
|
||||
"admin.config.legal.enabled.description": "Exibir um link para imprimir e política de privacidade no rodapé.",
|
||||
"admin.config.legal.imprint-text": "Imprimir texto",
|
||||
"admin.config.legal.imprint-text.description": "O texto que deve ser mostrado na imagem. Suporta Markdown. Deixe em branco para vincular a página de impressão externa.",
|
||||
"admin.config.legal.imprint-url": "Imprimir URL",
|
||||
"admin.config.legal.imprint-url.description": "Se você já tem uma página impressa, você pode vinculá-la aqui ao invés de usar o campo de texto.",
|
||||
"admin.config.legal.privacy-policy-text": "Texto da política de privacidade",
|
||||
"admin.config.legal.privacy-policy-text.description": "O texto que deve ser mostrado na política de privacidade. Suporta Markdown. Deixe em branco para vincular a página de política de privacidade externa.",
|
||||
"admin.config.legal.privacy-policy-url": "URL da política de privacidade",
|
||||
"admin.config.legal.privacy-policy-url.description": "Se você já tem uma página impressa, você pode vinculá-la aqui ao invés de usar o campo de texto.",
|
||||
// 404
|
||||
"404.description": "Ops, esta página não existe.",
|
||||
"404.button.home": "Me traga de volta para casa",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Приватное доступ",
|
||||
"share.error.access-denied.description": "У текущей учетной записи нет разрешения на доступ к этому ресурсу",
|
||||
"share.modal.password.title": "Требуется пароль",
|
||||
"share.modal.password.description": "Пожалуйста, введите пароль, чтобы получить доступ.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Пароль",
|
||||
"share.modal.error.invalid-password": "Неверный пароль",
|
||||
"share.button.download-all": "Скачать все",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Конфигурация",
|
||||
"admin.config.category.general": "Общее",
|
||||
"admin.config.category.share": "Загрузки",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Показывать домашнюю страницу",
|
||||
"admin.config.general.show-home-page.description": "Показывать ли домашнюю страницу или нет",
|
||||
"admin.config.general.session-duration": "Длительность сессии",
|
||||
"admin.config.general.session-duration.description": "Время в часах, после которого пользователь должен снова войти (по умолчанию: 3 месяца).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Логотип",
|
||||
"admin.config.general.logo.description": "Измените свой логотип, загрузив новое изображение. Изображение должно быть PNG и должно иметь формат 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Выберите изображение",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.modal.password.title": "Zahtevano geslo",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Geslo",
|
||||
"share.modal.error.invalid-password": "Napačno geslo",
|
||||
"share.button.download-all": "Prenesi vse",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Nastavitve",
|
||||
"admin.config.category.general": "Splošno",
|
||||
"admin.config.category.share": "Delitev",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Prikaži domačo stran",
|
||||
"admin.config.general.show-home-page.description": "Ali prikazati domačo stran",
|
||||
"admin.config.general.session-duration": "Session Duration",
|
||||
"admin.config.general.session-duration.description": "Time in hours after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logotip",
|
||||
"admin.config.general.logo.description": "Naložite novo sliko, da spremenite logotip. Datoteka mora biti tipa PNG in imeti razmerje 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Izberite sliko",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Privatno deljenje",
|
||||
"share.error.access-denied.description": "Trenutni nalog nema dozvolu za pristup ovom deljenju",
|
||||
"share.modal.password.title": "Obavezna lozinka",
|
||||
"share.modal.password.description": "Molimo unesite lozinku za pristup ovom deljenju.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Lozinka",
|
||||
"share.modal.error.invalid-password": "Neispravna lozinka",
|
||||
"share.button.download-all": "Preuzmi sve",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Konfiguracija",
|
||||
"admin.config.category.general": "Opšte",
|
||||
"admin.config.category.share": "Deljenje",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Prikaži početnu stranicu",
|
||||
"admin.config.general.show-home-page.description": "Da li da se prikaže početna stranica",
|
||||
"admin.config.general.session-duration": "Trajanje sesije",
|
||||
"admin.config.general.session-duration.description": "Vreme u satima nakon kojeg korisnik mora ponovo da se prijavi (podrazumevano: 3 meseca).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Promenite svoj logotip tako što ćete otpremiti novu sliku. Slika mora da bude PNG i treba da ima format 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Izaberi sliku",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Приватно дељење",
|
||||
"share.error.access-denied.description": "Тренутни налог нема дозволу за приступ овом дељењу",
|
||||
"share.modal.password.title": "Обавезна лозинка",
|
||||
"share.modal.password.description": "Молимо унесите лозинку за приступ овом дељењу.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Лозинка",
|
||||
"share.modal.error.invalid-password": "Неисправна лозинка",
|
||||
"share.button.download-all": "Преузми све",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Конфигурација",
|
||||
"admin.config.category.general": "Опште",
|
||||
"admin.config.category.share": "Дељење",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Прикажи почетну страницу",
|
||||
"admin.config.general.show-home-page.description": "Да ли да се прикаже почетна страница",
|
||||
"admin.config.general.session-duration": "Трајање сесије",
|
||||
"admin.config.general.session-duration.description": "Време у сатима након којег корисник мора поново да се пријави (подразумевано: 3 месеца).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Лого",
|
||||
"admin.config.general.logo.description": "Промените свој логотип тако што ћете отпремити нову слику. Слика мора да буде PNG и треба да има формат 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Изабери слику",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.modal.password.title": "Lösenord krävs",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Lösenord",
|
||||
"share.modal.error.invalid-password": "Ogiltigt lösenord",
|
||||
"share.button.download-all": "Ladda ner allt",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Konfiguration",
|
||||
"admin.config.category.general": "Allmänt",
|
||||
"admin.config.category.share": "Delning",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Visa startsidan",
|
||||
"admin.config.general.show-home-page.description": "Om du vill visa startsidan",
|
||||
"admin.config.general.session-duration": "Session Duration",
|
||||
"admin.config.general.session-duration.description": "Time in hours after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logotyp",
|
||||
"admin.config.general.logo.description": "Ändra din logotyp genom att ladda upp en ny bild. Bilden måste vara en PNG och bör ha formatet 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Välj bild",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.modal.password.title": "ต้องการรหัสผ่าน",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "รหัสผ่าน",
|
||||
"share.modal.error.invalid-password": "รหัสผ่านไม่ถูกต้อง",
|
||||
"share.button.download-all": "ดาวน์โหลดทั้งหมด",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "การตั้งค่า",
|
||||
"admin.config.category.general": "ทั่วไป",
|
||||
"admin.config.category.share": "การแชร์",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "แสดงหน้าแรก",
|
||||
"admin.config.general.show-home-page.description": "หากติ๊ก เว็บไซต์จะแสดงหน้าหลักเวลาเข้าถึง URL หลัก",
|
||||
"admin.config.general.session-duration": "Session Duration",
|
||||
"admin.config.general.session-duration.description": "Time in hours after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "โลโก้",
|
||||
"admin.config.general.logo.description": "เปลี่ยนโลโก้โดยอัปโหลดรูปภาพใหม่ รูปภาพต้องเป็น PNG และควรมีขนาดอัตราส่วน 1:1",
|
||||
"admin.config.general.logo.placeholder": "คลิกที่นี่หรือลากไฟล์มา",
|
||||
|
||||
@@ -1,40 +1,40 @@
|
||||
export default {
|
||||
// Navbar
|
||||
"navbar.upload": "Yükle",
|
||||
"navbar.signin": "Giriş Yap",
|
||||
"navbar.signin": "Giriş yap",
|
||||
"navbar.home": "Ana Sayfa",
|
||||
"navbar.signup": "Sign up",
|
||||
"navbar.signup": "Kaydol",
|
||||
"navbar.links.shares": "Paylaşımlarım",
|
||||
"navbar.links.reverse": "Tersine Paylaşımlar",
|
||||
"navbar.links.reverse": "Ters paylaşımlar",
|
||||
"navbar.avatar.account": "Hesabım",
|
||||
"navbar.avatar.admin": "Yönetim",
|
||||
"navbar.avatar.signout": "Çıkış Yap",
|
||||
"navbar.avatar.signout": "Çıkış yap",
|
||||
// END navbar
|
||||
// /
|
||||
"home.title": "<h>Kişisel barındırılan</h> bir dosya paylaşım platformu.",
|
||||
"home.description": "Kişisel dosyalarınızı WeTransfer gibi üçüncü tarafların eline gerçekten vermek istiyor musunuz?",
|
||||
"home.bullet.a.name": "Kişisel Barındırılan",
|
||||
"home.bullet.a.description": "Pingvin Share'i kendi makinenizde barındırın.",
|
||||
"home.title": "Kendi <h>kendine barındırılan</h> bir dosya paylaşım platformu.",
|
||||
"home.description": "Kişisel dosyalarınızı WeTransfer gibi üçüncü tarafların eline gerçekten vermek ister misiniz?",
|
||||
"home.bullet.a.name": "Kendi Kendine Barındırılan",
|
||||
"home.bullet.a.description": "Pingvin Share'i kendi cihazınızda barındırın.",
|
||||
"home.bullet.b.name": "Gizlilik",
|
||||
"home.bullet.b.description": "Your files are yours and will never be accessed by third parties.",
|
||||
"home.bullet.c.name": "Can sıkıcı dosya boyutu sınırı yok",
|
||||
"home.bullet.c.description": "Upload files as big as you want. Only your hard drive will be your limit.",
|
||||
"home.button.start": "Başlayalım",
|
||||
"home.bullet.b.description": "Dosyalarınız size aittir ve asla üçüncü taraflar tarafından erişilemez.",
|
||||
"home.bullet.c.name": "Can sıkıcı boyut sınırı yok",
|
||||
"home.bullet.c.description": "İstediğiniz kadar büyük dosyaları yükleyin. Sadece sabit diskiniz sınırınız olacak.",
|
||||
"home.button.start": "Başlayın",
|
||||
"home.button.source": "Kaynak kodu",
|
||||
// END /
|
||||
// /auth/signin
|
||||
"signin.title": "Tekrar hoşgeldiniz",
|
||||
"signin.title": "Tekrar hoş geldiniz",
|
||||
"signin.description": "Henüz bir hesabınız yok mu?",
|
||||
"signin.button.signup": "Kaydol",
|
||||
"signin.input.email-or-username": "Eposta veya kullanıcı adı",
|
||||
"signin.input.email-or-username.placeholder": "E-Posta veya kullanıcı adı",
|
||||
"signin.input.email-or-username": "E-posta veya kullanıcı adı",
|
||||
"signin.input.email-or-username.placeholder": "E-posta adresiniz veya kullanıcı adınız",
|
||||
"signin.input.password": "Şifre",
|
||||
"signin.input.password.placeholder": "Şifreniz",
|
||||
"signin.button.submit": "Giriş Yap",
|
||||
"signin.button.submit": "Giriş yap",
|
||||
"signIn.notify.totp-required.title": "İki faktörlü kimlik doğrulama gerekli",
|
||||
"signIn.notify.totp-required.description": "Lütfen iki faktörlü doğrulama kodunuzu girin",
|
||||
"signIn.oauth.or": "YA DA",
|
||||
"signIn.oauth.signInWith": "Sign in with",
|
||||
"signIn.notify.totp-required.description": "Lütfen iki faktörlü kimlik doğrulama kodunuzu girin",
|
||||
"signIn.oauth.or": "VEYA",
|
||||
"signIn.oauth.signInWith": "Şununla giriş yap",
|
||||
"signIn.oauth.github": "GitHub",
|
||||
"signIn.oauth.google": "Google",
|
||||
"signIn.oauth.microsoft": "Microsoft",
|
||||
@@ -42,104 +42,104 @@ export default {
|
||||
"signIn.oauth.oidc": "OpenID",
|
||||
// END /auth/signin
|
||||
// /auth/signup
|
||||
"signup.title": "Bir hesap oluştur",
|
||||
"signup.description": "Zaten bir hesabınız mı var?",
|
||||
"signup.button.signin": "Giriş Yap",
|
||||
"signup.input.username": "Kullanıcı Adı",
|
||||
"signup.title": "Bir hesap oluşturun",
|
||||
"signup.description": "Zaten bir hesabınız var mı?",
|
||||
"signup.button.signin": "Giriş yap",
|
||||
"signup.input.username": "Kullanıcı adı",
|
||||
"signup.input.username.placeholder": "Kullanıcı adınız",
|
||||
"signup.input.email": "E-Posta",
|
||||
"signup.input.email.placeholder": "E-Posta adresiniz",
|
||||
"signup.button.submit": "Haydi Başlayalım",
|
||||
"signup.input.email": "E-posta",
|
||||
"signup.input.email.placeholder": "E-posta adresiniz",
|
||||
"signup.button.submit": "Başlayalım",
|
||||
// END /auth/signup
|
||||
// /auth/totp
|
||||
"totp.title": "İki Faktörlü Doğrulama",
|
||||
"totp.button.signIn": "Giriş Yap",
|
||||
"totp.title": "TOTP Doğrulama",
|
||||
"totp.button.signIn": "Giriş yap",
|
||||
// END /auth/totp
|
||||
// /auth/reset-password
|
||||
"resetPassword.title": "Şifrenizi mi unuttunuz?",
|
||||
"resetPassword.description": "Şifrenizi sıfırlamak için E-Postanızı girin.",
|
||||
"resetPassword.notify.success": "A message with a link to reset your password has been sent if the provided email exists.",
|
||||
"resetPassword.description": "Şifrenizi sıfırlamak için e-postanızı girin.",
|
||||
"resetPassword.notify.success": "Sağlanan e-posta adresi mevcutsa, şifrenizi sıfırlamanız için bir bağlantı gönderildi.",
|
||||
"resetPassword.button.back": "Giriş sayfasına geri dön",
|
||||
"resetPassword.text.resetPassword": "Şifreyi sıfırla",
|
||||
"resetPassword.text.enterNewPassword": "Yeni şifrenizi girin",
|
||||
"resetPassword.input.password": "Yeni şifre",
|
||||
"resetPassword.notify.passwordReset": "Your password has been successfully reset.",
|
||||
"resetPassword.notify.passwordReset": "Şifreniz başarıyla sıfırlandı.",
|
||||
// /account
|
||||
"account.title": "Hesabım",
|
||||
"account.card.info.title": "Hesap Bilgisi",
|
||||
"account.card.info.username": "Kullanıcı Adı",
|
||||
"account.card.info.email": "E-Posta",
|
||||
"account.card.info.title": "Hesap bilgileri",
|
||||
"account.card.info.username": "Kullanıcı adı",
|
||||
"account.card.info.email": "E-posta",
|
||||
"account.notify.info.success": "Hesap başarıyla güncellendi",
|
||||
"account.card.password.title": "Şifre",
|
||||
"account.card.password.old": "Eski şifre",
|
||||
"account.card.password.new": "Yeni şifre",
|
||||
"account.card.password.noPasswordSet": "You do not have a password set. To sign in using your email and password, you need to create a password.",
|
||||
"account.card.password.noPasswordSet": "Şifreniz ayarlanmadı. E-posta ve şifre kullanarak giriş yapmak için bir şifre oluşturmanız gerekiyor.",
|
||||
"account.notify.password.success": "Şifre başarıyla değiştirildi",
|
||||
"account.card.oauth.title": "Sosyal Medya girişi",
|
||||
"account.card.oauth.title": "Sosyal giriş",
|
||||
"account.card.oauth.github": "GitHub",
|
||||
"account.card.oauth.google": "Google",
|
||||
"account.card.oauth.microsoft": "Microsoft",
|
||||
"account.card.oauth.discord": "Discord",
|
||||
"account.card.oauth.oidc": "OpenID",
|
||||
"account.card.oauth.link": "Bağlantı",
|
||||
"account.card.oauth.unlink": "Bağlantıyı kes",
|
||||
"account.card.oauth.unlinked": "Bağlantısız",
|
||||
"account.card.oauth.link": "Bağla",
|
||||
"account.card.oauth.unlink": "Bağlantıyı kaldır",
|
||||
"account.card.oauth.unlinked": "Bağlantı kaldırıldı",
|
||||
"account.modal.unlink.title": "Hesabın bağlantısını kaldır",
|
||||
"account.modal.unlink.description": "Unlinking your social accounts may cause you to lose your account if you don't remember your login credentials",
|
||||
"account.notify.oauth.unlinked.success": "Bağlantı Başarıyla Kaldırıldı",
|
||||
"account.modal.unlink.description": "Sosyal hesaplarınızın bağlantısını kaldırmanız giriş bilgilerinizi hatırlamıyorsanız hesabınızı kaybetmenize neden olabilir",
|
||||
"account.notify.oauth.unlinked.success": "Başarıyla bağlantı kaldırıldı",
|
||||
"account.card.security.title": "Güvenlik",
|
||||
"account.card.security.totp.enable.description": "İki faktörlü doğrulamayı aktif etmek için şu anki şifrenizi girin",
|
||||
"account.card.security.totp.disable.description": "İki faktörlü doğrulamayı kaldırmak için şu anki şifrenizi girin",
|
||||
"account.card.security.totp.enable.description": "TOTP'yi etkinleştirmek için mevcut şifrenizi girin",
|
||||
"account.card.security.totp.disable.description": "TOTP'yi devre dışı bırakmak için mevcut şifrenizi girin",
|
||||
"account.card.security.totp.button.start": "Başlat",
|
||||
"account.modal.totp.title": "2FA aç",
|
||||
"account.modal.totp.step1": "Adım 1: Kimlik doğrulayıcınızı ekleyin",
|
||||
"account.modal.totp.step2": "Adım 2: Kodunuzu doğrulayın",
|
||||
"account.modal.totp.title": "TOTP'yi Etkinleştir",
|
||||
"account.modal.totp.step1": "1. Adım: Kimlik doğrulayıcınızı ekleyin",
|
||||
"account.modal.totp.step2": "2. Adım: Kodunuzu doğrulayın",
|
||||
"account.modal.totp.enterManually": "Manuel olarak girin",
|
||||
"account.modal.totp.code": "Kod",
|
||||
"common.button.clickToCopy": "Kopyalamak için tıkla",
|
||||
"common.button.clickToCopy": "Kopyalamak için tıklayın",
|
||||
"account.modal.totp.verify": "Doğrula",
|
||||
"account.notify.totp.disable": "2FA başarıyla kaldırıldı",
|
||||
"account.notify.totp.enable": "2FA başarıyla etkinleştirildi",
|
||||
"account.notify.totp.disable": "TOTP başarıyla devre dışı bırakıldı",
|
||||
"account.notify.totp.enable": "TOTP başarıyla etkinleştirildi",
|
||||
"account.card.language.title": "Dil",
|
||||
"account.card.language.description": "Proje topluluk tarafından çevrilmiştir. Bazı diller eksik olabilir.",
|
||||
"account.card.color.title": "Renk Şeması",
|
||||
"account.card.color.title": "Renk şeması",
|
||||
// ThemeSwitcher.tsx
|
||||
"account.theme.dark": "Koyu",
|
||||
"account.theme.light": "Açık",
|
||||
"account.theme.dark": "Karanlık",
|
||||
"account.theme.light": "Aydınlık",
|
||||
"account.theme.system": "Sistem",
|
||||
"account.button.delete": "Hesabı sil",
|
||||
"account.modal.delete.title": "Hesabı sil",
|
||||
"account.button.delete": "Hesabı Sil",
|
||||
"account.modal.delete.title": "Hesabı Sil",
|
||||
"account.modal.delete.description": "Tüm aktif paylaşımlarınız dahil hesabınızı gerçekten silmek istiyor musunuz?",
|
||||
// END /account
|
||||
// /account/shares
|
||||
"account.shares.title": "Paylaşımlarım",
|
||||
"account.shares.title.empty": "Burası bomboş 👀",
|
||||
"account.shares.title.empty": "Burası boş 👀",
|
||||
"account.shares.description.empty": "Hiç paylaşımınız yok.",
|
||||
"account.shares.button.create": "Bir tane oluşturun",
|
||||
"account.shares.info.title": "Bilgiler paylaşın",
|
||||
"account.shares.button.create": "Bir tane oluştur",
|
||||
"account.shares.info.title": "Paylaşım Bilgileri",
|
||||
"account.shares.table.id": "ID",
|
||||
"account.shares.table.name": "İsim",
|
||||
"account.shares.table.name": "Adı",
|
||||
"account.shares.table.description": "Açıklama",
|
||||
"account.shares.table.visitors": "Ziyaretçiler",
|
||||
"account.shares.table.expiresAt": "Expires on",
|
||||
"account.shares.table.createdAt": "Created on",
|
||||
"account.shares.table.expiresAt": "Bitiş Tarihi",
|
||||
"account.shares.table.createdAt": "Oluşturulma Tarihi",
|
||||
"account.shares.table.size": "Boyut",
|
||||
"account.shares.table.password-protected": "Password protected",
|
||||
"account.shares.table.visitor-count": "{count} of {max}",
|
||||
"account.shares.table.expiry-never": "Never",
|
||||
"account.shares.modal.share-informations": "Bilgiler paylaşın",
|
||||
"account.shares.modal.share-link": "Bağlantıyı paylaş",
|
||||
"account.shares.modal.delete.title": "Delete share: {share}",
|
||||
"account.shares.table.password-protected": "Şifre Koruması",
|
||||
"account.shares.table.visitor-count": "{count} / {max}",
|
||||
"account.shares.table.expiry-never": "Hiçbir Zaman",
|
||||
"account.shares.modal.share-informations": "Paylaşım Bilgileri",
|
||||
"account.shares.modal.share-link": "Paylaşım Bağlantısı",
|
||||
"account.shares.modal.delete.title": "Paylaşımı Sil: {share}",
|
||||
"account.shares.modal.delete.description": "Bu paylaşımı silmek istediğinize emin misiniz?",
|
||||
// END /account/shares
|
||||
// /account/reverseShares
|
||||
"account.reverseShares.title": "Tersine Paylaşımlar",
|
||||
"account.reverseShares.description": "Ters paylaşım, harici kullanıcıların bir paylaşım oluşturmasına olanak tanıyan benzersiz bir URL oluşturmanızı sağlar.",
|
||||
"account.reverseShares.title.empty": "Burası bomboş 👀",
|
||||
"account.reverseShares.description.empty": "Hiç tersine paylaşımınız yok.",
|
||||
"account.reverseShares.title": "Ters Paylaşımlar",
|
||||
"account.reverseShares.description": "Ters paylaşım, harici kullanıcıların paylaşım oluşturmasını sağlayan benzersiz bir URL oluşturmanıza olanak tanır.",
|
||||
"account.reverseShares.title.empty": "Burası boş 👀",
|
||||
"account.reverseShares.description.empty": "Hiç ters paylaşımınız yok.",
|
||||
// showCreateReverseShareModal.tsx
|
||||
"account.reverseShares.modal.title": "Tersine paylaşım oluşturun",
|
||||
"account.reverseShares.modal.expiration.label": "Sona erme",
|
||||
"account.reverseShares.modal.title": "Ters Paylaşım Oluştur",
|
||||
"account.reverseShares.modal.expiration.label": "Son Kullanım Süresi",
|
||||
"account.reverseShares.modal.expiration.minute-singular": "Dakika",
|
||||
"account.reverseShares.modal.expiration.minute-plural": "Dakika",
|
||||
"account.reverseShares.modal.expiration.hour-singular": "Saat",
|
||||
@@ -152,92 +152,92 @@ export default {
|
||||
"account.reverseShares.modal.expiration.month-plural": "Ay",
|
||||
"account.reverseShares.modal.expiration.year-singular": "Yıl",
|
||||
"account.reverseShares.modal.expiration.year-plural": "Yıl",
|
||||
"account.reverseShares.modal.max-size.label": "Maks paylaşım boyutu",
|
||||
"account.reverseShares.modal.send-email": "Send email notifications",
|
||||
"account.reverseShares.modal.send-email.description": "Sends you an email notification when a share is created with this reverse share link.",
|
||||
"account.reverseShares.modal.simplified": "Simple mode",
|
||||
"account.reverseShares.modal.simplified.description": "Make it easy for the person uploading the file to share it with you. They will only be able to customize the name and description of the share.",
|
||||
"account.reverseShares.modal.public-access": "Public access",
|
||||
"account.reverseShares.modal.public-access.description": "Make the shares created with this reverse share public. If disabled, only you and the share creator will have access to view it.",
|
||||
"account.reverseShares.modal.max-use.label": "Maks Kullanım",
|
||||
"account.reverseShares.modal.max-use.description": "Bu URL'nin bir paylaşım oluşturmak için kullanılabileceği maksimum sayı.",
|
||||
"account.reverseShare.never-expires": "Bu tersine paylaşım asla sona ermeyecek.",
|
||||
"account.reverseShare.expires-on": "Bu tersine paylaşım {expiration} tarihinde sona erecek.",
|
||||
"account.reverseShares.table.no-shares": "Henüz paylaşım oluşturulmadı",
|
||||
"account.reverseShares.modal.max-size.label": "Maksimum Paylaşım Boyutu",
|
||||
"account.reverseShares.modal.send-email": "E-posta Bildirimleri Gönder",
|
||||
"account.reverseShares.modal.send-email.description": "Bu ters paylaşım bağlantısıyla bir paylaşım oluşturulduğunda size e-posta bildirimi gönderir.",
|
||||
"account.reverseShares.modal.simplified": "Basit Mod",
|
||||
"account.reverseShares.modal.simplified.description": "Dosya yükleyen kişinin, paylaşımı sizinle paylaşmasını kolaylaştırır. Yalnızca paylaşımın adını ve açıklamasını özelleştirebilirler.",
|
||||
"account.reverseShares.modal.public-access": "Genel Erişim",
|
||||
"account.reverseShares.modal.public-access.description": "Bu ters paylaşım ile oluşturulan paylaşımları genel yapın. Devre dışı bırakılırsa, yalnızca siz ve paylaşımı oluşturan kişi bunu görüntüleyebilir.",
|
||||
"account.reverseShares.modal.max-use.label": "Maksimum Kullanım",
|
||||
"account.reverseShares.modal.max-use.description": "Bu URL'nin paylaşım oluşturmak için kaç kez kullanılabileceğinin maksimum sayısı.",
|
||||
"account.reverseShare.never-expires": "Bu ters paylaşım asla sona ermeyecek.",
|
||||
"account.reverseShare.expires-on": "Bu ters paylaşım {expiration} tarihinde sona erecek.",
|
||||
"account.reverseShares.table.no-shares": "Henüz bir paylaşım oluşturulmadı",
|
||||
"account.reverseShares.table.count.singular": "paylaşım",
|
||||
"account.reverseShares.table.count.plural": "paylaşım",
|
||||
"account.reverseShares.table.shares": "Paylaşım",
|
||||
"account.reverseShares.table.remaining": "Kalan kullanımların",
|
||||
"account.reverseShares.table.max-size": "Maks paylaşım boyutu",
|
||||
"account.reverseShares.table.expires": "Sona erme tarihi",
|
||||
"account.reverseShares.modal.reverse-share-link": "Tersine paylaşım bağlantısı",
|
||||
"account.reverseShares.modal.delete.title": "Tersine paylaşımı sil",
|
||||
"account.reverseShares.modal.delete.description": "Bu tersine paylaşımı gerçekten silmek istiyor musunuz? Bunu yaparsanız, ilişkili paylaşımlar da silinecektir.",
|
||||
"account.reverseShares.table.count.plural": "paylaşımlar",
|
||||
"account.reverseShares.table.shares": "Paylaşımlar",
|
||||
"account.reverseShares.table.remaining": "Kalan Kullanım",
|
||||
"account.reverseShares.table.max-size": "Maksimum Paylaşım Boyutu",
|
||||
"account.reverseShares.table.expires": "Son Kullanım Tarihi",
|
||||
"account.reverseShares.modal.reverse-share-link": "Ters Paylaşım Bağlantısı",
|
||||
"account.reverseShares.modal.delete.title": "Ters Paylaşımı Sil",
|
||||
"account.reverseShares.modal.delete.description": "Bu ters paylaşımı silmek istediğinize emin misiniz? Eğer silerseniz, ilişkili paylaşımlar da silinecektir.",
|
||||
// END /account/reverseShares
|
||||
// /admin
|
||||
"admin.title": "Yönetim",
|
||||
"admin.button.users": "Kullanıcı yönetimi",
|
||||
"admin.button.shares": "Paylaşım yönetimi",
|
||||
"admin.button.config": "Konfigürasyon",
|
||||
"admin.button.users": "Kullanıcı Yönetimi",
|
||||
"admin.button.shares": "Paylaşım Yönetimi",
|
||||
"admin.button.config": "Yapılandırma",
|
||||
"admin.version": "Sürüm",
|
||||
// END /admin
|
||||
// /admin/users
|
||||
"admin.users.title": "Kullanıcı yönetimi",
|
||||
"admin.users.title": "Kullanıcı Yönetimi",
|
||||
"admin.users.table.username": "Kullanıcı Adı",
|
||||
"admin.users.table.email": "E-Posta",
|
||||
"admin.users.table.email": "E-posta",
|
||||
"admin.users.table.admin": "Yönetici",
|
||||
"admin.users.edit.update.title": "Edit user: {username}",
|
||||
"admin.users.edit.update.admin-privileges": "Yönetici ayrıcalıkları",
|
||||
"admin.users.edit.update.change-password.title": "Şifreyi değiştir",
|
||||
"admin.users.edit.update.change-password.field": "Yeni şifre",
|
||||
"admin.users.edit.update.change-password.button": "Yeni şifreyi kaydet",
|
||||
"admin.users.edit.update.title": "Kullanıcıyı Düzenle: {username}",
|
||||
"admin.users.edit.update.admin-privileges": "Yönetici Yetkileri",
|
||||
"admin.users.edit.update.change-password.title": "Şifreyi Değiştir",
|
||||
"admin.users.edit.update.change-password.field": "Yeni Şifre",
|
||||
"admin.users.edit.update.change-password.button": "Yeni Şifreyi Kaydet",
|
||||
"admin.users.edit.update.notify.password.success": "Şifre başarıyla değiştirildi",
|
||||
"admin.users.edit.delete.title": "Delete user: {username} ?",
|
||||
"admin.users.edit.delete.description": "Do you really want to delete this user and all their shares?",
|
||||
"admin.users.edit.delete.title": "Kullanıcıyı Sil: {username} ?",
|
||||
"admin.users.edit.delete.description": "Bu kullanıcıyı ve tüm paylaşımlarını gerçekten silmek istiyor musunuz?",
|
||||
// showCreateUserModal.tsx
|
||||
"admin.users.modal.create.title": "Kullanıcı oluştur",
|
||||
"admin.users.modal.create.title": "Kullanıcı Oluştur",
|
||||
"admin.users.modal.create.username": "Kullanıcı Adı",
|
||||
"admin.users.modal.create.email": "E-Posta",
|
||||
"admin.users.modal.create.email": "E-posta",
|
||||
"admin.users.modal.create.password": "Şifre",
|
||||
"admin.users.modal.create.manual-password": "Şifreyi manuel olarak ayarla",
|
||||
"admin.users.modal.create.manual-password.description": "İşaretlenmezse, kullanıcı şifresini ayarlamak için bağlantı içeren bir e-posta alacaktır.",
|
||||
"admin.users.modal.create.admin": "Yönetici ayrıcalıkları",
|
||||
"admin.users.modal.create.admin.description": "İşaretlenirse, kullanıcı yönetici paneline erişebilir.",
|
||||
"admin.users.modal.create.manual-password": "Şifreyi Elle Ayarla",
|
||||
"admin.users.modal.create.manual-password.description": "İşaretlenmezse, kullanıcıya şifresini ayarlayabileceği bir bağlantı içeren e-posta gönderilir.",
|
||||
"admin.users.modal.create.admin": "Yönetici Yetkileri",
|
||||
"admin.users.modal.create.admin.description": "İşaretlenirse, kullanıcı yönetim paneline erişebilir.",
|
||||
// END /admin/users
|
||||
// /admin/shares
|
||||
"admin.shares.title": "Paylaşım yönetimi",
|
||||
"admin.shares.title": "Paylaşım Yönetimi",
|
||||
"admin.shares.table.id": "Paylaşım ID",
|
||||
"admin.shares.table.username": "Yapımcı",
|
||||
"admin.shares.table.visitors": "Ziyaretçi",
|
||||
"admin.shares.table.expires": "Expires on",
|
||||
"admin.shares.edit.delete.title": "Delete share: {id}",
|
||||
"admin.shares.edit.delete.description": "Bu paylaşımı gerçekten silmek istiyor musun?",
|
||||
"admin.shares.table.username": "Oluşturan",
|
||||
"admin.shares.table.visitors": "Ziyaretçiler",
|
||||
"admin.shares.table.expires": "Bitiş Tarihi",
|
||||
"admin.shares.edit.delete.title": "Paylaşımı Sil: {id}",
|
||||
"admin.shares.edit.delete.description": "Bu paylaşımı gerçekten silmek istiyor musunuz?",
|
||||
// END /admin/shares
|
||||
// /upload
|
||||
"upload.title": "Yükle",
|
||||
"upload.notify.confirm-leave": "Are you sure you want to leave this page? Your upload will be canceled.",
|
||||
"upload.notify.generic-error": "Paylaşımını bitirirken bir hata meydana geldi.",
|
||||
"upload.notify.count-failed": "{count} dosya yüklenemedi. Yeniden deneniyor.",
|
||||
"upload.reverse-share.error.invalid.title": "Invalid reverse share link",
|
||||
"upload.reverse-share.error.invalid.description": "This reverse share has expired or is invalid.",
|
||||
"upload.notify.confirm-leave": "Bu sayfadan ayrılmak istediğinize emin misiniz? Yükleme iptal edilecek.",
|
||||
"upload.notify.generic-error": "Paylaşım tamamlanırken bir hata oluştu.",
|
||||
"upload.notify.count-failed": "{count} dosya yüklenemedi. Tekrar deneniyor.",
|
||||
"upload.reverse-share.error.invalid.title": "Geçersiz Ters Paylaşım Bağlantısı",
|
||||
"upload.reverse-share.error.invalid.description": "Bu ters paylaşım süresi dolmuş veya geçersiz.",
|
||||
// Dropzone.tsx
|
||||
"upload.dropzone.title": "Dosya yükle",
|
||||
"upload.dropzone.description": "Drag'n'drop files here to start your share. We only accept files up to {maxSize} in total.",
|
||||
"upload.dropzone.notify.file-too-big": "Dosyalarınızın boyutu {maxSize} paylaşım sınırını geçti.",
|
||||
"upload.dropzone.title": "Dosyaları Yükle",
|
||||
"upload.dropzone.description": "Paylaşımınızı başlatmak için dosyaları buraya sürükleyip bırakın. Toplamda en fazla {maxSize} boyutunda dosyaları kabul ediyoruz.",
|
||||
"upload.dropzone.notify.file-too-big": "Dosyalarınız maksimum paylaşım boyutunu ({maxSize}) aşıyor.",
|
||||
// FileList.tsx
|
||||
"upload.filelist.name": "İsim",
|
||||
"upload.filelist.name": "Ad",
|
||||
"upload.filelist.size": "Boyut",
|
||||
// showCreateUploadModal.tsx
|
||||
"upload.modal.title": "Paylaşım Oluştur",
|
||||
"upload.modal.link.error.invalid": "Sadece harf, sayı, alt çizgi ve kısa çizgi içerebilir",
|
||||
"upload.modal.link.error.taken": "Bu bağlantı halen kullanımda",
|
||||
"upload.modal.not-signed-in": "Oturum açmadınız",
|
||||
"upload.modal.not-signed-in-description": "Paylaşımınızı manuel olarak silemeyecek ve ziyaret sayısını göremeyeceksiniz.",
|
||||
"upload.modal.expires.never": "asla",
|
||||
"upload.modal.expires.never-long": "Permanent share",
|
||||
"upload.modal.expires.error.too-long": "Expiration date exceeds the maximum of {max}.",
|
||||
"upload.modal.link.error.invalid": "Sadece harf, rakam, alt çizgi ve kısa çizgi içerebilir.",
|
||||
"upload.modal.link.error.taken": "Bu bağlantı zaten kullanımda.",
|
||||
"upload.modal.not-signed-in": "Giriş yapmadınız.",
|
||||
"upload.modal.not-signed-in-description": "Paylaşımınızı manuel olarak silemez ve ziyaretçi sayısını göremezsiniz.",
|
||||
"upload.modal.expires.never": "Hiçbir zaman",
|
||||
"upload.modal.expires.never-long": "Kalıcı paylaşım",
|
||||
"upload.modal.expires.error.too-long": "Son kullanma tarihi maksimum {max} sınırını aşıyor.",
|
||||
"upload.modal.link.label": "Bağlantı",
|
||||
"upload.modal.expires.label": "Sona erme tarihi",
|
||||
"upload.modal.expires.label": "Bitiş Tarihi",
|
||||
"upload.modal.expires.minute-singular": "Dakika",
|
||||
"upload.modal.expires.minute-plural": "Dakika",
|
||||
"upload.modal.expires.hour-singular": "Saat",
|
||||
@@ -250,253 +250,255 @@ export default {
|
||||
"upload.modal.expires.month-plural": "Ay",
|
||||
"upload.modal.expires.year-singular": "Yıl",
|
||||
"upload.modal.expires.year-plural": "Yıl",
|
||||
"upload.modal.accordion.name-and-description.title": "İsim ve açıklama",
|
||||
"upload.modal.accordion.name-and-description.name.placeholder": "İsim",
|
||||
"upload.modal.accordion.name-and-description.description.placeholder": "Bu paylaşımın alıcıları için not",
|
||||
"upload.modal.accordion.email.title": "E-Posta alıcıları",
|
||||
"upload.modal.accordion.email.placeholder": "E-Posta alıcılarını yazın",
|
||||
"upload.modal.accordion.email.invalid-email": "Geçersiz E-Posta adresi",
|
||||
"upload.modal.accordion.security.title": "Güvenlik seçenekleri",
|
||||
"upload.modal.accordion.security.password.label": "Şifre koruması",
|
||||
"upload.modal.accordion.security.password.placeholder": "Şifresiz",
|
||||
"upload.modal.accordion.security.max-views.label": "En fazla görüntüleme",
|
||||
"upload.modal.accordion.security.max-views.placeholder": "Sınır yok",
|
||||
"upload.modal.accordion.name-and-description.title": "Ad ve Açıklama",
|
||||
"upload.modal.accordion.name-and-description.name.placeholder": "Ad",
|
||||
"upload.modal.accordion.name-and-description.description.placeholder": "Bu paylaşımın alıcıları için bir not",
|
||||
"upload.modal.accordion.email.title": "E-posta Alıcıları",
|
||||
"upload.modal.accordion.email.placeholder": "E-posta alıcılarını girin",
|
||||
"upload.modal.accordion.email.invalid-email": "Geçersiz e-posta adresi",
|
||||
"upload.modal.accordion.security.title": "Güvenlik Seçenekleri",
|
||||
"upload.modal.accordion.security.password.label": "Şifre Koruması",
|
||||
"upload.modal.accordion.security.password.placeholder": "Şifre Yok",
|
||||
"upload.modal.accordion.security.max-views.label": "Maksimum Görüntüleme",
|
||||
"upload.modal.accordion.security.max-views.placeholder": "Sınırsız",
|
||||
// showCompletedUploadModal.tsx
|
||||
"upload.modal.completed.never-expires": "Bu paylaşım asla sona ermeyecek.",
|
||||
"upload.modal.completed.never-expires": "Bu paylaşımın süresi hiçbir zaman dolmayacak.",
|
||||
"upload.modal.completed.expires-on": "Bu paylaşım {expiration} tarihinde sona erecek.",
|
||||
"upload.modal.completed.share-ready": "Paylaşım hazır",
|
||||
"upload.modal.completed.notified-reverse-share-creator": "We have notified the creator of the reverse share. You can also manually share this link with them through other means.",
|
||||
"upload.modal.completed.share-ready": "Paylaşım hazır.",
|
||||
"upload.modal.completed.notified-reverse-share-creator": "Ters paylaşımın yaratıcısını bilgilendirdik. Bu bağlantıyı diğer yollarla manuel olarak da paylaşabilirsiniz.",
|
||||
// END /upload
|
||||
// /share/[id]
|
||||
"share.title": "Paylaş {shareId}",
|
||||
"share.description": "Seninle ne paylaştığıma bak!",
|
||||
"share.error.visitor-limit-exceeded.title": "Ziyaretçi sınırı aşıldı",
|
||||
"share.error.visitor-limit-exceeded.description": "Bu paylaşımdaki ziyaretçi sınırı aşıldı.",
|
||||
"share.title": "{shareId} Paylaşımı",
|
||||
"share.description": "Sizinle paylaştıklarımı bir göz atın!",
|
||||
"share.error.visitor-limit-exceeded.title": "Ziyaretçi limiti aşıldı",
|
||||
"share.error.visitor-limit-exceeded.description": "Bu paylaşımın ziyaretçi limiti aşıldı.",
|
||||
"share.error.removed.title": "Paylaşım kaldırıldı",
|
||||
"share.error.not-found.title": "Paylaşım bulunamadı",
|
||||
"share.error.not-found.description": "Aradığınız paylaşım bulunmuyor.",
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.error.not-found.description": "Aradığınız paylaşım mevcut değil.",
|
||||
"share.error.access-denied.title": "Özel paylaşım",
|
||||
"share.error.access-denied.description": "Mevcut hesabın bu paylaşıma erişim izni yok.",
|
||||
"share.modal.password.title": "Şifre gerekli",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Bu paylaşıma erişmek için lütfen şifreyi girin.",
|
||||
"share.modal.password": "Şifre",
|
||||
"share.modal.error.invalid-password": "Geçersiz şifre",
|
||||
"share.button.download-all": "Tümünü indir",
|
||||
"share.notify.download-all-preparing": "The share is being prepared. Please try again in a few minutes.",
|
||||
"share.notify.download-all-preparing": "Paylaşım hazırlanıyor. Lütfen birkaç dakika sonra tekrar deneyin.",
|
||||
"share.modal.file-link": "Dosya bağlantısı",
|
||||
"share.table.name": "İsim",
|
||||
"share.table.name": "Ad",
|
||||
"share.table.size": "Boyut",
|
||||
"share.modal.file-preview.error.not-supported.title": "Önizleme desteklenmiyor",
|
||||
"share.modal.file-preview.error.not-supported.description": "Previews are not supported for this type of files. Please download the file to view it.",
|
||||
"share.modal.file-preview.error.not-supported.description": "Bu dosya türü için önizleme desteklenmiyor. Lütfen dosyayı görüntülemek için indirin.",
|
||||
// END /share/[id]
|
||||
// /share/[id]/edit
|
||||
"share.edit.title": "{shareId} düzenle",
|
||||
"share.edit.title": "{shareId} Paylaşımını Düzenle",
|
||||
"share.edit.append-upload": "Dosya ekle",
|
||||
"share.edit.notify.generic-error": "Paylaşımını bitirirken bir hata meydana geldi.",
|
||||
"share.edit.notify.generic-error": "Paylaşımınızı tamamlarken bir hata oluştu.",
|
||||
"share.edit.notify.save-success": "Paylaşım başarıyla güncellendi",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "Künye",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "Gizlilik Politikası",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.title": "Konfigürasyon",
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Yapılandırma",
|
||||
"admin.config.category.general": "Genel",
|
||||
"admin.config.category.share": "Paylaş",
|
||||
"admin.config.category.email": "E-Posta",
|
||||
"admin.config.category.email": "E-posta",
|
||||
"admin.config.category.smtp": "SMTP",
|
||||
"admin.config.category.oauth": "Sosyal Medya Girişi",
|
||||
"admin.config.category.oauth": "Sosyal Giriş",
|
||||
"admin.config.general.app-name": "Uygulama adı",
|
||||
"admin.config.general.app-name.description": "Uygulamanın adı",
|
||||
"admin.config.general.app-url": "Uygulama URL'si",
|
||||
"admin.config.general.app-url.description": "Pingvin Share'in hangi bağlantıda kullanılacağı",
|
||||
"admin.config.general.secure-cookies": "Secure cookies",
|
||||
"admin.config.general.secure-cookies.description": "Whether to set the secure flag on cookies. If enabled, the site will not function when accessed over HTTP.",
|
||||
"admin.config.general.app-url.description": "Pingvin Share hangi URL üzerinden kullanılabilir",
|
||||
"admin.config.general.secure-cookies": "Güvenli çerezler",
|
||||
"admin.config.general.secure-cookies.description": "Çerezlere güvenli bayrağı koyulup koyulmayacağı. Etkinleştirildiğinde, site HTTP üzerinden erişildiğinde çalışmaz.",
|
||||
"admin.config.general.show-home-page": "Ana sayfayı göster",
|
||||
"admin.config.general.show-home-page.description": "Ana sayfanın görünürlüğü",
|
||||
"admin.config.general.show-home-page.description": "Ana sayfanın gösterilip gösterilmeyeceği",
|
||||
"admin.config.general.session-duration": "Oturum Süresi",
|
||||
"admin.config.general.session-duration.description": "Kullanıcının ne kadar sürede bir tekrar giriş yapacağı (normalde 3 ay).",
|
||||
"admin.config.general.session-duration.description": "Kullanıcının tekrar oturum açması için gereken süre (varsayılan süre: 3 ay).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Yeni resim yükleyerek logo'nuzu değiştirin. Resim PNG ve 1'e 1 ölçekte olmalı.",
|
||||
"admin.config.general.logo.description": "Yeni bir resim yükleyerek logonuzu değiştirin. Resim PNG formatında olmalı ve 1:1 oranında olmalıdır.",
|
||||
"admin.config.general.logo.placeholder": "Resim seç",
|
||||
"admin.config.email.enable-share-email-recipients": "Enable email recipient sharing",
|
||||
"admin.config.email.enable-share-email-recipients.description": "Whether to allow email sharing with recipients. Only enable this if SMTP is activated.",
|
||||
"admin.config.email.enable-share-email-recipients": "E-posta alıcılarının paylaşımını etkinleştir",
|
||||
"admin.config.email.enable-share-email-recipients.description": "E-postaların alıcılarla paylaşılmasına izin verilip verilmeyeceği. Sadece SMTP etkinleştirildiğinde bunu etkinleştirin.",
|
||||
"admin.config.email.share-recipients-subject": "Paylaşım alıcılarının konusu",
|
||||
"admin.config.email.share-recipients-subject.description": "Paylaşım alıcılarına gönderilecek e-postanın konusu.",
|
||||
"admin.config.email.share-recipients-message": "Paylaşım alıcılarının mesajı",
|
||||
"admin.config.email.share-recipients-message.description": "Message which gets sent to the share recipients. Available variables:\n {creator} - The username of the creator of the share\n {creatorEmail} - The email of the creator of the share\n {shareUrl} - The URL of the share\n {desc} - The description of the share\n {expires} - The expiration date of the share\n These variables will be replaced with the actual value.",
|
||||
"admin.config.email.reverse-share-subject": "Tersine paylaşım konusu",
|
||||
"admin.config.email.reverse-share-subject.description": "Subject of the sent email when someone created a share with your reverse share link.",
|
||||
"admin.config.email.reverse-share-message": "Tersine paylaşım mesajı",
|
||||
"admin.config.email.reverse-share-message.description": "Birisi sizin tersine paylaşım bağlantınızla bir paylaşım oluşturduğunda gönderilen mesaj. {shareUrl}, oluşturucunun adı ve paylaşım URL'si ile değiştirilecektir.",
|
||||
"admin.config.email.share-recipients-subject.description": "Paylaşım alıcılarına gönderilen e-postanın konusu.",
|
||||
"admin.config.email.share-recipients-message": "Paylaşım alıcılarına mesaj",
|
||||
"admin.config.email.share-recipients-message.description": "Paylaşım alıcılarına gönderilen mesaj. Kullanılabilir değişkenler:\n {creator} - Paylaşımı oluşturanın kullanıcı adı\n {creatorEmail} - Paylaşımı oluşturanın e-posta adresi\n {shareUrl} - Paylaşım URL'si\n {desc} - Paylaşım açıklaması\n {expires} - Paylaşımın son kullanma tarihi\n Bu değişkenler gerçek değerlerle değiştirilecektir.",
|
||||
"admin.config.email.reverse-share-subject": "Ters paylaşım konusu",
|
||||
"admin.config.email.reverse-share-subject.description": "Birisi ters paylaşım bağlantınızla bir paylaşım oluşturduğunda gönderilen e-postanın konusu.",
|
||||
"admin.config.email.reverse-share-message": "Ters paylaşım mesajı",
|
||||
"admin.config.email.reverse-share-message.description": "Birisi ters paylaşım bağlantınızla bir paylaşım oluşturduğunda gönderilen mesaj. {shareUrl}, paylaşımı oluşturan kişinin adı ve paylaşım URL'si ile değiştirilecektir.",
|
||||
"admin.config.email.reset-password-subject": "Şifre sıfırlama konusu",
|
||||
"admin.config.email.reset-password-subject.description": "Subject of the sent email when a user requests a password reset.",
|
||||
"admin.config.email.reset-password-subject.description": "Bir kullanıcı şifre sıfırlama talebinde bulunduğunda gönderilen e-postanın konusu.",
|
||||
"admin.config.email.reset-password-message": "Şifre sıfırlama mesajı",
|
||||
"admin.config.email.reset-password-message.description": "Bir kullanıcı şifre sıfırlama talebinde bulunduğunda gönderilecek mesaj. {url} şifre sıfırlama URL'si ile değiştirilecektir.",
|
||||
"admin.config.email.reset-password-message.description": "Bir kullanıcı şifre sıfırlama talebinde bulunduğunda gönderilen mesaj. {url}, şifre sıfırlama URL'si ile değiştirilecektir.",
|
||||
"admin.config.email.invite-subject": "Davet konusu",
|
||||
"admin.config.email.invite-subject.description": "Subject of the sent email when an admin invites a user.",
|
||||
"admin.config.email.invite-subject.description": "Bir yönetici bir kullanıcıyı davet ettiğinde gönderilen e-postanın konusu.",
|
||||
"admin.config.email.invite-message": "Davet mesajı",
|
||||
"admin.config.email.invite-message.description": "Message which gets sent when an admin invites a user. {url} will be replaced with the invite URL, {email} with the email and {password} with the users password.",
|
||||
"admin.config.share.allow-registration": "Kayda izin ver",
|
||||
"admin.config.share.allow-registration.description": "Kaydın izin verilip verilmeyeceği",
|
||||
"admin.config.share.allow-unauthenticated-shares": "Giriş yapmamış kullanıcılara izin ver",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Giriş yapmamış kullanıcıların paylaşım oluşturup oluşturamayacağı",
|
||||
"admin.config.share.max-expiration": "Maks sona erme",
|
||||
"admin.config.share.max-expiration.description": "Maximum share expiration. Set to 0 to allow unlimited expiration.",
|
||||
"admin.config.share.share-id-length": "Default share ID length",
|
||||
"admin.config.share.share-id-length.description": "Default length for the generated ID of a share. This value is also used to generate links for reverse shares. A value below 8 is not considered secure.",
|
||||
"admin.config.share.max-size": "Maks boyut",
|
||||
"admin.config.share.max-size.description": "Maks paylaşım boyutu",
|
||||
"admin.config.share.zip-compression-level": "Zip sıkıştırma seviyesi",
|
||||
"admin.config.share.zip-compression-level.description": "Dosya boyutu ve sıkıştırma hızı arasında denge kurmak için seviyeyi ayarlayın. Geçerli değerler 0 ile 9 arasında değişir; 0 sıkıştırma yok ve 9 maksimum sıkıştırma anlamına gelir. ",
|
||||
"admin.config.share.chunk-size": "Yığın boyutu",
|
||||
"admin.config.share.chunk-size.description": "Adjust the chunk size for your uploads to balance efficiency and reliability according to your internet connection. Smaller chunks can enhance success rates for unstable connections, while larger chunks make uploads faster for stable connections.",
|
||||
"admin.config.share.auto-open-share-modal": "Paylaşım oluşturma modalini otomatik aç",
|
||||
"admin.config.share.auto-open-share-modal.description": "Bir kullanıcı dosyaları seçtiğinde paylaşım oluşturma modu otomatik olarak görünür ve düğmeye manuel olarak tıklama ihtiyacını ortadan kaldırır.",
|
||||
"admin.config.smtp.enabled": "Enable",
|
||||
"admin.config.smtp.enabled.description": "SMTP'nin etkin olup olmadığı. Bunu yalnızca SMTP sunucunuzun ana bilgisayarını, bağlantı noktasını, e-postasını, kullanıcısını ve şifresini girdiyseniz true olarak ayarlayın.",
|
||||
"admin.config.smtp.host": "Host",
|
||||
"admin.config.smtp.host.description": "SMTP sunucusunun hostu",
|
||||
"admin.config.email.invite-message.description": "Bir yönetici bir kullanıcıyı davet ettiğinde gönderilen mesaj. {url}, davet URL'si ile; {email}, e-posta adresi ile ve {password}, kullanıcının şifresi ile değiştirilecektir.",
|
||||
"admin.config.share.allow-registration": "Kayıta izin ver",
|
||||
"admin.config.share.allow-registration.description": "Kaydın izinli olup olmadığı",
|
||||
"admin.config.share.allow-unauthenticated-shares": "Doğrulanmamış paylaşımlara izin ver",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Doğrulanmamış kullanıcıların paylaşım oluşturmasına izin verilip verilmeyeceği",
|
||||
"admin.config.share.max-expiration": "Maksimum son kullanma süresi",
|
||||
"admin.config.share.max-expiration.description": "Maksimum paylaşım süresi. Sınırsız süreye izin vermek için 0 olarak ayarlayın.",
|
||||
"admin.config.share.share-id-length": "Varsayılan paylaşım ID uzunluğu",
|
||||
"admin.config.share.share-id-length.description": "Bir paylaşım için oluşturulan varsayılan ID uzunluğu. Bu değer, ters paylaşımlar için bağlantı oluştururken de kullanılır. 8'in altındaki bir değer güvenli olarak kabul edilmez.",
|
||||
"admin.config.share.max-size": "Maksimum boyut",
|
||||
"admin.config.share.max-size.description": "Maksimum paylaşım boyutu",
|
||||
"admin.config.share.zip-compression-level": "ZIP sıkıştırma seviyesi",
|
||||
"admin.config.share.zip-compression-level.description": "Dosya boyutu ve sıkıştırma hızı arasındaki dengeyi ayarlayın. Geçerli değerler 0 ile 9 arasındadır; 0 sıkıştırma yok, 9 maksimum sıkıştırma anlamına gelir.",
|
||||
"admin.config.share.chunk-size": "Parça boyutu",
|
||||
"admin.config.share.chunk-size.description": "Yüklemeleriniz için verimlilik ve güvenilirliği internet bağlantınıza göre dengelemek için parça boyutunu ayarlayın. Daha küçük parçalar, dengesiz bağlantılar için başarı oranını artırabilirken, daha büyük parçalar sabit bağlantılar için yükleme hızını artırır.",
|
||||
"admin.config.share.auto-open-share-modal": "Paylaşım oluşturma penceresini otomatik aç",
|
||||
"admin.config.share.auto-open-share-modal.description": "Kullanıcı dosya seçtiğinde paylaşım oluşturma penceresi otomatik olarak görünür, manuel olarak düğmeye tıklamaya gerek kalmaz.",
|
||||
"admin.config.smtp.enabled": "Etkinleştir",
|
||||
"admin.config.smtp.enabled.description": "SMTP'nin etkin olup olmadığı. Sadece ana bilgisayar, port, e-posta, kullanıcı ve SMTP sunucunuzun şifresini girdiyseniz bunu true olarak ayarlayın.",
|
||||
"admin.config.smtp.host": "Sunucu",
|
||||
"admin.config.smtp.host.description": "SMTP sunucusunun ana bilgisayarı",
|
||||
"admin.config.smtp.port": "Port",
|
||||
"admin.config.smtp.port.description": "SMTP sunucusunun portu",
|
||||
"admin.config.smtp.email": "E-Posta",
|
||||
"admin.config.smtp.email.description": "Email address from wich the emails get sent",
|
||||
"admin.config.smtp.username": "Kullanıcı Adı",
|
||||
"admin.config.smtp.email": "E-posta",
|
||||
"admin.config.smtp.email.description": "E-postaların gönderileceği e-posta adresi",
|
||||
"admin.config.smtp.username": "Kullanıcı adı",
|
||||
"admin.config.smtp.username.description": "SMTP sunucusunun kullanıcı adı",
|
||||
"admin.config.smtp.password": "Şifre",
|
||||
"admin.config.smtp.password.description": "SMTP sunucusunun şifresi",
|
||||
"admin.config.smtp.button.test": "Test e-postası gönder",
|
||||
"admin.config.smtp.allow-unauthorized-certificates": "Trust unauthorized SMTP server certificates",
|
||||
"admin.config.smtp.allow-unauthorized-certificates.description": "Only set this to true if you need to trust self signed certificates.",
|
||||
"admin.config.oauth.allow-registration": "Kayıtlara izin ver",
|
||||
"admin.config.oauth.allow-registration.description": "Sosyal Medya kayıtlarına izin verilip verilmeyeceği",
|
||||
"admin.config.oauth.ignore-totp": "2FA görmezden gel",
|
||||
"admin.config.oauth.ignore-totp.description": "Sosyal Medya ile giriş yapıldıktıktan sonra 2FA görmezden gelinip gelinmeyeceği",
|
||||
"admin.config.oauth.disable-password": "Disable password login",
|
||||
"admin.config.oauth.disable-password.description": "Whether to disable password login\nMake sure that an OAuth provider is properly configured before activating this configuration to avoid being locked out.",
|
||||
"admin.config.smtp.allow-unauthorized-certificates": "Yetkisiz SMTP sunucu sertifikalarına güven",
|
||||
"admin.config.smtp.allow-unauthorized-certificates.description": "Sadece kendi imzaladığınız sertifikalara güvenmeniz gerekiyorsa bunu true olarak ayarlayın.",
|
||||
"admin.config.oauth.allow-registration": "Kayıt olmayı etkinleştir",
|
||||
"admin.config.oauth.allow-registration.description": "Kullanıcıların sosyal giriş yoluyla kayıt olmasına izin ver",
|
||||
"admin.config.oauth.ignore-totp": "TOTP'yi yoksay",
|
||||
"admin.config.oauth.ignore-totp.description": "Kullanıcı sosyal giriş yaparken TOTP'nin yoksayılıp yoksayılmayacağı",
|
||||
"admin.config.oauth.disable-password": "Şifre girişini devre dışı bırak",
|
||||
"admin.config.oauth.disable-password.description": "Şifre girişinin devre dışı bırakılıp bırakılmayacağı\nBu yapılandırmayı etkinleştirmeden önce bir OAuth sağlayıcısının doğru şekilde yapılandırıldığından emin olun, aksi takdirde hesaba erişiminiz engellenebilir.",
|
||||
"admin.config.oauth.github-enabled": "GitHub",
|
||||
"admin.config.oauth.github-enabled.description": "GitHub girişine izin verilip verilmeyeceği",
|
||||
"admin.config.oauth.github-client-id": "GitHub Client ID",
|
||||
"admin.config.oauth.github-client-id.description": "GitHub OAuth uygulamasının Client ID'si",
|
||||
"admin.config.oauth.github-client-secret": "GitHub Client Secret",
|
||||
"admin.config.oauth.github-client-secret.description": "GitHub OAuth uygulamasının Client Secret'i",
|
||||
"admin.config.oauth.github-enabled.description": "GitHub girişinin etkin olup olmadığı",
|
||||
"admin.config.oauth.github-client-id": "GitHub İstemci Kimliği",
|
||||
"admin.config.oauth.github-client-id.description": "GitHub OAuth uygulamasının İstemci Kimliği",
|
||||
"admin.config.oauth.github-client-secret": "GitHub İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.github-client-secret.description": "GitHub OAuth uygulamasının İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.google-enabled": "Google",
|
||||
"admin.config.oauth.google-enabled.description": "Google girişi izin verilip verilmeyeceği",
|
||||
"admin.config.oauth.google-client-id": "Google Client ID",
|
||||
"admin.config.oauth.google-client-id.description": "Google OAuth uygulamasının Client ID'si",
|
||||
"admin.config.oauth.google-client-secret": "Google Client Secret",
|
||||
"admin.config.oauth.google-client-secret.description": "Google OAuth uygulamasının Client Secret'i",
|
||||
"admin.config.oauth.google-enabled.description": "Google girişinin etkin olup olmadığı",
|
||||
"admin.config.oauth.google-client-id": "Google İstemci Kimliği",
|
||||
"admin.config.oauth.google-client-id.description": "Google OAuth uygulamasının İstemci Kimliği",
|
||||
"admin.config.oauth.google-client-secret": "Google İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.google-client-secret.description": "Google OAuth uygulamasının İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.microsoft-enabled": "Microsoft",
|
||||
"admin.config.oauth.microsoft-enabled.description": "Microsoft girişine izin verilip verilmeyeceği",
|
||||
"admin.config.oauth.microsoft-tenant": "Microsoft Tenant",
|
||||
"admin.config.oauth.microsoft-tenant.description": "Microsoft OAuth uygulamasının Tenant kimliği\nyaygın: Hem kişisel Microsoft hesabına hem de Microsoft Entra ID'den bir iş veya okul hesabına sahip kullanıcılar uygulamada oturum açabilir. kuruluşlar: Yalnızca Microsoft Entra ID'den iş veya okul hesabı olan kullanıcılar uygulamada oturum açabilir.\ntüketiciler: Yalnızca kişisel Microsoft hesabı olan kullanıcılar uygulamada oturum açabilir.\nMicrosoft Entra Tenant etki alanı adı veya GUID biçimindeki Tenant kimliği: Yalnızca belirli bir Microsoft Entra Tenant kullanıcısı (iş veya okul hesabına sahip dizin üyeleri veya kişisel Microsoft hesabına sahip dizin konukları) uygulamada oturum açabilir.",
|
||||
"admin.config.oauth.microsoft-client-id": "Microsoft Client ID",
|
||||
"admin.config.oauth.microsoft-client-id.description": "Microsoft OAuth uygulamasının Client ID'si",
|
||||
"admin.config.oauth.microsoft-client-secret": "Microsoft Client secret",
|
||||
"admin.config.oauth.microsoft-client-secret.description": "Microsoft OAuth uygulamasının Client Secret'i",
|
||||
"admin.config.oauth.microsoft-enabled.description": "Microsoft girişinin etkin olup olmadığı",
|
||||
"admin.config.oauth.microsoft-tenant": "Microsoft Kiracı",
|
||||
"admin.config.oauth.microsoft-tenant.description": "Microsoft OAuth uygulamasının Kiracı Kimliği\ncommon: Hem kişisel Microsoft hesaplarına hem de Microsoft Entra ID'den iş veya okul hesaplarına sahip kullanıcılar uygulamaya giriş yapabilir.\norganizations: Sadece Microsoft Entra ID'den iş veya okul hesaplarına sahip kullanıcılar uygulamaya giriş yapabilir.\nconsumers: Sadece kişisel Microsoft hesabı olan kullanıcılar uygulamaya giriş yapabilir.\nMicrosoft Entra kiracısının alan adı veya GUID formatındaki kiracı kimliği: Sadece belirli bir Microsoft Entra kiracısındaki kullanıcılar (iş veya okul hesapları olan dizin üyeleri veya kişisel Microsoft hesabı olan dizin konukları) uygulamaya giriş yapabilir.",
|
||||
"admin.config.oauth.microsoft-client-id": "Microsoft İstemci Kimliği",
|
||||
"admin.config.oauth.microsoft-client-id.description": "Microsoft OAuth uygulamasının İstemci Kimliği",
|
||||
"admin.config.oauth.microsoft-client-secret": "Microsoft İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.microsoft-client-secret.description": "Microsoft OAuth uygulamasının İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.discord-enabled": "Discord",
|
||||
"admin.config.oauth.discord-enabled.description": "Discord girişine izin verilip verilmeyeceği",
|
||||
"admin.config.oauth.discord-limited-users": "Discord limited users",
|
||||
"admin.config.oauth.discord-limited-users.description": "Limit signing in to specific users by their Discord ID. Leave it blank to disable.",
|
||||
"admin.config.oauth.discord-limited-guild": "Discord limitli sunucu ID'si",
|
||||
"admin.config.oauth.discord-limited-guild.description": "Oturum açmayı belirli bir sunucudaki kullanıcılarla sınırlayın. Devre dışı bırakmak için boş bırakın.",
|
||||
"admin.config.oauth.discord-client-id": "Discord Client ID",
|
||||
"admin.config.oauth.discord-client-id.description": "Discord OAuth uygulamasının Client ID'si",
|
||||
"admin.config.oauth.discord-client-secret": "Discord Client secret",
|
||||
"admin.config.oauth.discord-client-secret.description": "Discord OAuth uygulamasının Client Secret'i",
|
||||
"admin.config.oauth.oidc-enabled": "OpenID Bağlantısı",
|
||||
"admin.config.oauth.oidc-enabled.description": "OpenID girişine izin verilip verilmeyeceği",
|
||||
"admin.config.oauth.oidc-discovery-uri": "OpenID Connect Keşfetme URI'si",
|
||||
"admin.config.oauth.oidc-discovery-uri.description": "OpenID Connect OAuth uygulamasının Keşfetme URI'si",
|
||||
"admin.config.oauth.oidc-sign-out": "Sign out from OpenID Connect",
|
||||
"admin.config.oauth.oidc-sign-out.description": "Whether the “Sign out” button will sign out from the OpenID Connect provider",
|
||||
"admin.config.oauth.oidc-scope": "OpenID Connect scope",
|
||||
"admin.config.oauth.oidc-scope.description": "Scopes which should be requested from the OpenID Connect provider.",
|
||||
"admin.config.oauth.oidc-username-claim": "OpenID Connect kullanıcı adı sahiplenme",
|
||||
"admin.config.oauth.oidc-username-claim.description": "OpenID Connect ID belirtecinde kullanıcı adı sahiplenme. Bu yapılandırmanın ne olduğunu bilmiyorsanız boş bırakın.",
|
||||
"admin.config.oauth.oidc-role-path": "Path to roles in OpenID Connect token",
|
||||
"admin.config.oauth.oidc-role-path.description": "Must be a valid JMES path referencing an array of roles. " + "Managing access rights using OpenID Connect roles is only recommended if no other identity provider is configured and password login is disabled. " + "Leave it blank if you don't know what this config is.",
|
||||
"admin.config.oauth.oidc-role-general-access": "OpenID Connect role for general access",
|
||||
"admin.config.oauth.oidc-role-general-access.description": "Role required for general access. Must be present in a user’s roles for them to log in. " + "Leave it blank if you don't know what this config is.",
|
||||
"admin.config.oauth.oidc-role-admin-access": "OpenID Connect role for admin access",
|
||||
"admin.config.oauth.oidc-role-admin-access.description": "Role required for administrative access. Must be present in a user’s roles for them to access the admin panel. " + "Leave it blank if you don't know what this config is.",
|
||||
"admin.config.oauth.oidc-client-id": "OpenID Connect Client ID",
|
||||
"admin.config.oauth.oidc-client-id.description": "OpenID Connect OAuth uygulamasının Client ID'si",
|
||||
"admin.config.oauth.oidc-client-secret": "OpenID Connect Client secret",
|
||||
"admin.config.oauth.oidc-client-secret.description": "OpenID Connect OAuth uygulamasının Client Secret'i",
|
||||
"admin.config.oauth.discord-enabled.description": "Discord girişinin etkin olup olmadığı",
|
||||
"admin.config.oauth.discord-limited-users": "Discord ile sınırlı kullanıcılar",
|
||||
"admin.config.oauth.discord-limited-users.description": "Belirli kullanıcıların Discord ID'leri ile giriş yapmasını sınırla. Devre dışı bırakmak için boş bırakın.",
|
||||
"admin.config.oauth.discord-limited-guild": "Discord ile sınırlı sunucu ID'si",
|
||||
"admin.config.oauth.discord-limited-guild.description": "Belirli bir sunucudaki kullanıcıların giriş yapmasını sınırla. Devre dışı bırakmak için boş bırakın.",
|
||||
"admin.config.oauth.discord-client-id": "Discord İstemci Kimliği",
|
||||
"admin.config.oauth.discord-client-id.description": "Discord OAuth uygulamasının İstemci Kimliği",
|
||||
"admin.config.oauth.discord-client-secret": "Discord İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.discord-client-secret.description": "Discord OAuth uygulamasının İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.oidc-enabled": "OpenID Connect",
|
||||
"admin.config.oauth.oidc-enabled.description": "OpenID Connect girişinin etkin olup olmadığı",
|
||||
"admin.config.oauth.oidc-discovery-uri": "OpenID Connect Keşif URI'si",
|
||||
"admin.config.oauth.oidc-discovery-uri.description": "OpenID Connect OAuth uygulamasının Keşif URI'si",
|
||||
"admin.config.oauth.oidc-sign-out": "OpenID Connect'ten çıkış yap",
|
||||
"admin.config.oauth.oidc-sign-out.description": "“Çıkış yap” düğmesinin OpenID Connect sağlayıcısından çıkış yapıp yapmayacağı",
|
||||
"admin.config.oauth.oidc-scope": "OpenID Connect kapsamı",
|
||||
"admin.config.oauth.oidc-scope.description": "OpenID Connect sağlayıcısından talep edilmesi gereken kapsamlar.",
|
||||
"admin.config.oauth.oidc-username-claim": "OpenID Connect kullanıcı adı alanı",
|
||||
"admin.config.oauth.oidc-username-claim.description": "OpenID Connect ID tokenindeki kullanıcı adı alanı. Bu yapılandırmanın ne olduğunu bilmiyorsanız boş bırakın.",
|
||||
"admin.config.oauth.oidc-role-path": "OpenID Connect tokenindeki rollerin yolu",
|
||||
"admin.config.oauth.oidc-role-path.description": "Bir dizi rolü referans alan geçerli bir JMES yolu olmalıdır. " + "Erişim haklarını OpenID Connect rolleri kullanarak yönetmek, başka bir kimlik sağlayıcı yapılandırılmamışsa ve şifreli giriş devre dışıysa önerilir. " + "Bu yapılandırmanın ne olduğunu bilmiyorsanız boş bırakın.",
|
||||
"admin.config.oauth.oidc-role-general-access": "Genel erişim için OpenID Connect rolü",
|
||||
"admin.config.oauth.oidc-role-general-access.description": "Genel erişim için gerekli rol. Kullanıcıların giriş yapabilmesi için rollerinde bulunması gerekir. " + "Bu yapılandırmanın ne olduğunu bilmiyorsanız boş bırakın.",
|
||||
"admin.config.oauth.oidc-role-admin-access": "Yönetici erişimi için OpenID Connect rolü",
|
||||
"admin.config.oauth.oidc-role-admin-access.description": "Yönetici paneline erişim için gerekli rol. Kullanıcıların yönetici paneline erişebilmesi için rollerinde bulunması gerekir. " + "Bu yapılandırmanın ne olduğunu bilmiyorsanız boş bırakın.",
|
||||
"admin.config.oauth.oidc-client-id": "OpenID Connect İstemci Kimliği",
|
||||
"admin.config.oauth.oidc-client-id.description": "OpenID Connect OAuth uygulamasının İstemci Kimliği",
|
||||
"admin.config.oauth.oidc-client-secret": "OpenID Connect İstemci Gizli Anahtarı",
|
||||
"admin.config.oauth.oidc-client-secret.description": "OpenID Connect OAuth uygulamasının İstemci Gizli Anahtarı",
|
||||
"admin.config.category.ldap": "LDAP",
|
||||
"admin.config.ldap.enabled": "Enable LDAP",
|
||||
"admin.config.ldap.enabled.description": "Use LDAP authentication for user login",
|
||||
"admin.config.ldap.url": "Server URL",
|
||||
"admin.config.ldap.url.description": "URL of the LDAP server",
|
||||
"admin.config.ldap.enabled": "LDAP'ı etkinleştir",
|
||||
"admin.config.ldap.enabled.description": "Kullanıcı girişinde LDAP kimlik doğrulamasını kullan",
|
||||
"admin.config.ldap.url": "Sunucu URL'si",
|
||||
"admin.config.ldap.url.description": "LDAP sunucusunun URL'si",
|
||||
"admin.config.ldap.bind-dn": "Bind DN",
|
||||
"admin.config.ldap.bind-dn.description": "Default user used to perform the user search",
|
||||
"admin.config.ldap.bind-password": "Bind password",
|
||||
"admin.config.ldap.bind-password.description": "Password used to perform the user search",
|
||||
"admin.config.ldap.search-base": "User base",
|
||||
"admin.config.ldap.search-base.description": "Base location, where the user search will be performed",
|
||||
"admin.config.ldap.search-query": "User query",
|
||||
"admin.config.ldap.search-query.description": "The user query will be used to search the 'User base' for the LDAP user. %username% can be used as the placeholder for the user given input.",
|
||||
"admin.config.ldap.admin-groups": "Admin group",
|
||||
"admin.config.ldap.admin-groups.description": "Group required for administrative access.",
|
||||
"admin.config.ldap.field-name-member-of": "User groups attribute name",
|
||||
"admin.config.ldap.field-name-member-of.description": "LDAP attribute name for the groups, an user is a member of. This is used when checking for the admin group.",
|
||||
"admin.config.ldap.field-name-email": "User email attribute name",
|
||||
"admin.config.ldap.field-name-email.description": "LDAP attribute name for the email of an user.",
|
||||
"admin.config.notify.success": "Configuration updated successfully.",
|
||||
"admin.config.notify.logo-success": "Logo updated successfully. It may take a few minutes to update on the website.",
|
||||
"admin.config.notify.no-changes": "No changes to save.",
|
||||
"admin.config.ldap.bind-dn.description": "Kullanıcı aramasını gerçekleştirmek için kullanılan varsayılan kullanıcı",
|
||||
"admin.config.ldap.bind-password": "Bağlantı şifresi",
|
||||
"admin.config.ldap.bind-password.description": "Kullanıcı aramasını gerçekleştirmek için kullanılan şifre",
|
||||
"admin.config.ldap.search-base": "Kullanıcı temeli",
|
||||
"admin.config.ldap.search-base.description": "Kullanıcı aramasının yapılacağı temel konum",
|
||||
"admin.config.ldap.search-query": "Kullanıcı sorgusu",
|
||||
"admin.config.ldap.search-query.description": "Kullanıcı sorgusu, LDAP kullanıcısını aramak için 'Kullanıcı temeli' üzerinde kullanılacaktır. Kullanıcı girişine karşılık gelen %username% yer tutucusu kullanılabilir.",
|
||||
"admin.config.ldap.admin-groups": "Yönetici grubu",
|
||||
"admin.config.ldap.admin-groups.description": "Yönetimsel erişim için gerekli grup.",
|
||||
"admin.config.ldap.field-name-member-of": "Kullanıcı grupları nitelik adı",
|
||||
"admin.config.ldap.field-name-member-of.description": "Kullanıcının üye olduğu gruplar için LDAP nitelik adı. Bu, yönetici grubunu kontrol ederken kullanılır.",
|
||||
"admin.config.ldap.field-name-email": "Kullanıcı e-posta nitelik adı",
|
||||
"admin.config.ldap.field-name-email.description": "Kullanıcının e-posta adresi için LDAP nitelik adı.",
|
||||
"admin.config.notify.success": "Yapılandırma başarıyla güncellendi.",
|
||||
"admin.config.notify.logo-success": "Logo başarıyla güncellendi. Web sitesinde güncellenmesi birkaç dakika sürebilir.",
|
||||
"admin.config.notify.no-changes": "Kaydedilecek bir değişiklik yok.",
|
||||
"admin.config.category.s3": "S3",
|
||||
"admin.config.s3.enabled": "Enabled",
|
||||
"admin.config.s3.enabled.description": "Whether S3 should be used to store the shared files instead of the local file system.",
|
||||
"admin.config.s3.endpoint": "Endpoint",
|
||||
"admin.config.s3.endpoint.description": "The URL of the S3 bucket.",
|
||||
"admin.config.s3.region": "Region",
|
||||
"admin.config.s3.region.description": "The region of the S3 bucket.",
|
||||
"admin.config.s3.bucket-name": "Bucket name",
|
||||
"admin.config.s3.bucket-name.description": "The name of the S3 bucket.",
|
||||
"admin.config.s3.bucket-path": "Path",
|
||||
"admin.config.s3.bucket-path.description": "The default path which should be used to store the files in the S3 bucket.",
|
||||
"admin.config.s3.key": "Key",
|
||||
"admin.config.s3.key.description": "The key which allows you to access the S3 bucket.",
|
||||
"admin.config.s3.secret": "Secret",
|
||||
"admin.config.s3.secret.description": "The secret which allows you to access the S3 bucket.",
|
||||
"admin.config.category.legal": "Legal",
|
||||
"admin.config.legal.enabled": "Enable legal notices",
|
||||
"admin.config.legal.enabled.description": "Whether to show a link to imprint and privacy policy in the footer.",
|
||||
"admin.config.legal.imprint-text": "Imprint text",
|
||||
"admin.config.legal.imprint-text.description": "The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.",
|
||||
"admin.config.legal.imprint-url": "Imprint URL",
|
||||
"admin.config.legal.imprint-url.description": "If you already have an imprint page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.privacy-policy-text": "Privacy policy text",
|
||||
"admin.config.legal.privacy-policy-text.description": "The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.",
|
||||
"admin.config.legal.privacy-policy-url": "Privacy policy URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "If you already have a privacy policy page you can link it here instead of using the text field.",
|
||||
"admin.config.s3.enabled": "Etkin",
|
||||
"admin.config.s3.enabled.description": "Paylaşılan dosyaların yerel dosya sistemi yerine S3 üzerinde depolanıp depolanmayacağını belirtir.",
|
||||
"admin.config.s3.endpoint": "Bağlantı Noktası",
|
||||
"admin.config.s3.endpoint.description": "S3 kovasının URL'si.",
|
||||
"admin.config.s3.region": "Bölge",
|
||||
"admin.config.s3.region.description": "S3 kovasının bulunduğu bölge.",
|
||||
"admin.config.s3.bucket-name": "Kova Adı",
|
||||
"admin.config.s3.bucket-name.description": "S3 kovasının adı.",
|
||||
"admin.config.s3.bucket-path": "Yol",
|
||||
"admin.config.s3.bucket-path.description": "Dosyaların S3 kovasında depolanması için varsayılan yol.",
|
||||
"admin.config.s3.key": "Anahtar",
|
||||
"admin.config.s3.key.description": "S3 kovasına erişmenizi sağlayan anahtar.",
|
||||
"admin.config.s3.secret": "Gizli",
|
||||
"admin.config.s3.secret.description": "S3 kovasına erişmenizi sağlayan gizli anahtar.",
|
||||
"admin.config.category.legal": "Yasal",
|
||||
"admin.config.legal.enabled": "Yasal Bildirimleri Etkinleştir",
|
||||
"admin.config.legal.enabled.description": "Alt bilgi kısmında künyeye ve gizlilik politikasına bir bağlantı gösterilip gösterilmeyeceğini belirtir.",
|
||||
"admin.config.legal.imprint-text": "Künye Metni",
|
||||
"admin.config.legal.imprint-text.description": "Künyede gösterilecek metin. Markdown destekler. Dış bir künye sayfasına bağlanmak için boş bırakın.",
|
||||
"admin.config.legal.imprint-url": "Künye URL'si",
|
||||
"admin.config.legal.imprint-url.description": "Halihazırda bir künye sayfanız varsa, buraya bağlantı verebilirsiniz.",
|
||||
"admin.config.legal.privacy-policy-text": "Gizlilik Politikası Metni",
|
||||
"admin.config.legal.privacy-policy-text.description": "Gizlilik politikasında gösterilecek metin. Markdown destekler. Dış bir gizlilik politikası sayfasına bağlanmak için boş bırakın.",
|
||||
"admin.config.legal.privacy-policy-url": "Gizlilik Politikası URL'si",
|
||||
"admin.config.legal.privacy-policy-url.description": "Halihazırda bir gizlilik politikası sayfanız varsa, buraya bağlantı verebilirsiniz.",
|
||||
// 404
|
||||
"404.description": "Haydaa, böyle bir sayfa yok.",
|
||||
"404.button.home": "Beni eve götür",
|
||||
"404.description": "Hata! Bu sayfa mevcut değil.",
|
||||
"404.button.home": "Beni anasayfaya götür",
|
||||
// error
|
||||
"error.title": "Hata",
|
||||
"error.description": "Haydaa!",
|
||||
"error.description": "Oops!",
|
||||
"error.button.back": "Geri dön",
|
||||
"error.msg.default": "Bir şeyler ters gitti.",
|
||||
"error.msg.access_denied": "Doğrulama aşamasını iptal ettin, lütfen yeniden dene.",
|
||||
"error.msg.expired_token": "Doğrulama aşaması çok uzun sürdü, lütfen yeniden dene.",
|
||||
"error.msg.access_denied": "Kimlik doğrulama işlemini iptal ettiniz, lütfen tekrar deneyin.",
|
||||
"error.msg.expired_token": "Kimlik doğrulama işlemi çok uzun sürdü, lütfen tekrar deneyin.",
|
||||
"error.msg.invalid_token": "Dahili Hata",
|
||||
"error.msg.no_user": "Bu {0} hesabına bağlı kullanıcı mevcut değil.",
|
||||
"error.msg.no_email": "Bu {0} hesaptan e-posta adresi alınamıyor.",
|
||||
"error.msg.already_linked": "Bu {0} hesabı zaten başka bir hesaba bağlı.",
|
||||
"error.msg.not_linked": "This {0} account hasn't been linked to any account yet.",
|
||||
"error.msg.unverified_account": "Bu {0} hesabı doğrulanmamış, lütfen doğruladıktan sonra yeniden dene.",
|
||||
"error.msg.user_not_allowed": "Giriş yapmana izin verilmiyor.",
|
||||
"error.msg.cannot_get_user_info": "Cannot get your user info from this {0} account.",
|
||||
"error.msg.no_user": "Bu {0} hesabıyla bağlantılı bir kullanıcı mevcut değil.",
|
||||
"error.msg.no_email": "Bu {0} hesabından e-posta adresi alınamıyor.",
|
||||
"error.msg.already_linked": "Bu {0} hesabı zaten başka bir hesapla bağlantılı.",
|
||||
"error.msg.not_linked": "Bu {0} hesabı henüz hiçbir hesapla bağlantılı değil.",
|
||||
"error.msg.unverified_account": "Bu {0} hesabı doğrulanmamış, lütfen doğrulamadan sonra tekrar deneyin.",
|
||||
"error.msg.user_not_allowed": "Giriş yapma izniniz yok.",
|
||||
"error.msg.cannot_get_user_info": "Bu {0} hesabından kullanıcı bilgilerinize ulaşılamıyor.",
|
||||
"error.param.provider_github": "GitHub",
|
||||
"error.param.provider_google": "Google",
|
||||
"error.param.provider_microsoft": "Microsoft",
|
||||
"error.param.provider_discord": "Discord",
|
||||
"error.param.provider_oidc": "OpenID Bağlantısı",
|
||||
"error.param.provider_oidc": "OpenID Connect",
|
||||
// Common translations
|
||||
"common.button.save": "Kaydet",
|
||||
"common.button.create": "Oluştur",
|
||||
@@ -504,27 +506,27 @@ export default {
|
||||
"common.button.delete": "Sil",
|
||||
"common.button.cancel": "İptal",
|
||||
"common.button.confirm": "Onayla",
|
||||
"common.button.disable": "Etkisizleştir",
|
||||
"common.button.disable": "Devre Dışı Bırak",
|
||||
"common.button.share": "Paylaş",
|
||||
"common.button.generate": "Oluştur",
|
||||
"common.button.done": "Tamam",
|
||||
"common.button.done": "Tamamlandı",
|
||||
"common.text.link": "Bağlantı",
|
||||
"common.text.navigate-to-link": "Visit link",
|
||||
"common.text.or": "ya da",
|
||||
"common.text.redirecting": "Redirecting...",
|
||||
"common.text.navigate-to-link": "Bağlantıya git",
|
||||
"common.text.or": "veya",
|
||||
"common.text.redirecting": "Yönlendiriliyor...",
|
||||
"common.button.go-back": "Geri dön",
|
||||
"common.button.go-home": "Ana sayfaya dön",
|
||||
"common.notify.copied": "Bağlantınız kopyalandı",
|
||||
"common.notify.copied-link": "Bağlantınız kopyalandı",
|
||||
"common.button.go-home": "Anasayfaya git",
|
||||
"common.notify.copied": "Bağlantınız panoya kopyalandı",
|
||||
"common.notify.copied-link": "Bağlantınız panoya kopyalandı",
|
||||
"common.success": "Başarılı",
|
||||
"common.error": "Hata",
|
||||
"common.error.unknown": "Bilinmeyen hata meydana geldi",
|
||||
"common.error.invalid-email": "Geçersiz E-Posta adresi",
|
||||
"common.error.too-short": "En azından {length} karakter olmalı",
|
||||
"common.error.too-long": "En fazla {length} karakter olmalı",
|
||||
"common.error.number-too-small": "Must be at least {min}",
|
||||
"common.error.number-too-large": "Must be at most {max}",
|
||||
"common.error.exact-length": "Tam tamına {length} karakter olmalı",
|
||||
"common.error.invalid-number": "Bir sayı olmalı",
|
||||
"common.error.field-required": "Bu alan gerekli"
|
||||
"common.error.unknown": "Bilinmeyen bir hata oluştu",
|
||||
"common.error.invalid-email": "Geçersiz e-posta adresi",
|
||||
"common.error.too-short": "En az {length} karakter olmalıdır",
|
||||
"common.error.too-long": "En fazla {length} karakter olmalıdır",
|
||||
"common.error.number-too-small": "En az {min} olmalıdır",
|
||||
"common.error.number-too-large": "En fazla {max} olmalıdır",
|
||||
"common.error.exact-length": "Tam olarak {length} karakter olmalıdır",
|
||||
"common.error.invalid-number": "Bir sayı olmalıdır",
|
||||
"common.error.field-required": "Bu alan gereklidir"
|
||||
};
|
||||
@@ -124,8 +124,8 @@ export default {
|
||||
"account.shares.table.expiresAt": "Діє до",
|
||||
"account.shares.table.createdAt": "Створено",
|
||||
"account.shares.table.size": "Розмір",
|
||||
"account.shares.table.password-protected": "Password protected",
|
||||
"account.shares.table.visitor-count": "{count} of {max}",
|
||||
"account.shares.table.password-protected": "Захищено паролем",
|
||||
"account.shares.table.visitor-count": "{count} із {max}",
|
||||
"account.shares.table.expiry-never": "Ніколи",
|
||||
"account.shares.modal.share-informations": "Відомості",
|
||||
"account.shares.modal.share-link": "Поділитися посиланням",
|
||||
@@ -296,12 +296,14 @@ export default {
|
||||
"share.edit.notify.save-success": "Посилання на ресурс успішно оновлено",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "Вихідні дані",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "Політика конфіденційності",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Конфігурація",
|
||||
"admin.config.category.general": "Загальне",
|
||||
"admin.config.category.share": "Завантаження",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Показувати домашню сторінку",
|
||||
"admin.config.general.show-home-page.description": "Показувати домашню сторінку чи ні",
|
||||
"admin.config.general.session-duration": "Тривалість сеансу",
|
||||
"admin.config.general.session-duration.description": "Час у годинах, після якого користувач повинен знову увійти в систему (за замовчуванням: 3 місяці).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Логотип",
|
||||
"admin.config.general.logo.description": "Змініть свій логотип, завантаживши нове зображення. Зображення має бути PNG і повинно мати формат 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Виберіть зображення",
|
||||
@@ -344,7 +346,7 @@ export default {
|
||||
"admin.config.share.allow-unauthenticated-shares": "Дозволити неавторизовані завантаження",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "Чи можуть неавторизовані користувачі створювати завантаження",
|
||||
"admin.config.share.max-expiration": "Максимальний термін дії",
|
||||
"admin.config.share.max-expiration.description": "Maximum share expiration. Set to 0 to allow unlimited expiration.",
|
||||
"admin.config.share.max-expiration.description": "Максимальний термін дії спільного доступу. Встановіть 0, щоб дозволити необмежений термін дії.",
|
||||
"admin.config.share.share-id-length": "Стандартна довжина ID завантаження",
|
||||
"admin.config.share.share-id-length.description": "Стандартна довжина для згенерованого ID завантаження. Це значення також використовується для створення посилань для зворотних завантажень. Значення менше 8 не вважається безпечним.",
|
||||
"admin.config.share.max-size": "Максимальний розмір",
|
||||
@@ -463,17 +465,17 @@ export default {
|
||||
"admin.config.s3.key.description": "Ключ, який дозволяє отримати доступ до S3 бакету.",
|
||||
"admin.config.s3.secret": "Секрет",
|
||||
"admin.config.s3.secret.description": "Секрет, який дозволяє отримати доступ до S3 бакету.",
|
||||
"admin.config.category.legal": "Legal",
|
||||
"admin.config.legal.enabled": "Enable legal notices",
|
||||
"admin.config.legal.enabled.description": "Whether to show a link to imprint and privacy policy in the footer.",
|
||||
"admin.config.legal.imprint-text": "Imprint text",
|
||||
"admin.config.legal.imprint-text.description": "The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.",
|
||||
"admin.config.legal.imprint-url": "Imprint URL",
|
||||
"admin.config.legal.imprint-url.description": "If you already have an imprint page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.privacy-policy-text": "Privacy policy text",
|
||||
"admin.config.legal.privacy-policy-text.description": "The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.",
|
||||
"admin.config.legal.privacy-policy-url": "Privacy policy URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "If you already have a privacy policy page you can link it here instead of using the text field.",
|
||||
"admin.config.category.legal": "Юридична інформація",
|
||||
"admin.config.legal.enabled": "Увімкнути правові сповіщення",
|
||||
"admin.config.legal.enabled.description": "Чи відображати посилання на вихідні дані та політику конфіденційності у нижньому колонтитулі.",
|
||||
"admin.config.legal.imprint-text": "Текст вихідних даних",
|
||||
"admin.config.legal.imprint-text.description": "Текст, який має відображатися у вихідних даних. Підтримує Markdown. Залиште порожнім, щоб вставити посилання на зовнішню сторінку з вихідними даними.",
|
||||
"admin.config.legal.imprint-url": "URL вихідних даних",
|
||||
"admin.config.legal.imprint-url.description": "Якщо у вас вже є сторінка з вихідними даними, ви можете вставити посилання на неї тут замість використання текстового поля.",
|
||||
"admin.config.legal.privacy-policy-text": "Текст політики конфіденційності",
|
||||
"admin.config.legal.privacy-policy-text.description": "Текст, що має бути показано в політиці конфіденційності. Підтримує Markdown. Залиште порожнім, щоб надати посилання на сторінку зовнішньої політики конфіденційності.",
|
||||
"admin.config.legal.privacy-policy-url": "Політика конфіденційності URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "Якщо у вас вже є сторінка політики конфіденційності, то ви можете зв'язати її тут замість використання текстового поля.",
|
||||
// 404
|
||||
"404.description": "Бляха, цієї строрінки не існує.",
|
||||
"404.button.home": "Поверни мене додому",
|
||||
|
||||
@@ -3,7 +3,7 @@ export default {
|
||||
"navbar.upload": "Tải lên",
|
||||
"navbar.signin": "Đăng nhập",
|
||||
"navbar.home": "Trang chủ",
|
||||
"navbar.signup": "Sign up",
|
||||
"navbar.signup": "Đăng ký",
|
||||
"navbar.links.shares": "Chia sẻ của tôi",
|
||||
"navbar.links.reverse": "Reverse shares",
|
||||
"navbar.avatar.account": "Tài khoản",
|
||||
@@ -163,7 +163,7 @@ export default {
|
||||
"account.reverseShares.modal.max-use.description": "The maximum amount of times this URL can be used to create a share.",
|
||||
"account.reverseShare.never-expires": "This reverse share will never expire.",
|
||||
"account.reverseShare.expires-on": "This reverse share will expire on {expiration}.",
|
||||
"account.reverseShares.table.no-shares": "No shares created yet",
|
||||
"account.reverseShares.table.no-shares": "Chưa tạo chia sẻ nào",
|
||||
"account.reverseShares.table.count.singular": "share",
|
||||
"account.reverseShares.table.count.plural": "shares",
|
||||
"account.reverseShares.table.shares": "Shares",
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "Private share",
|
||||
"share.error.access-denied.description": "The current account does not have permission to access this share",
|
||||
"share.modal.password.title": "Cần mật khẩu để mở khoá",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "Mật khẩu",
|
||||
"share.modal.error.invalid-password": "Mật khẩu không hợp lệ",
|
||||
"share.button.download-all": "Tải xuống tất cả",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "Configuration",
|
||||
"admin.config.category.general": "Tổng quan",
|
||||
"admin.config.category.share": "Share",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "Show home page",
|
||||
"admin.config.general.show-home-page.description": "Whether to show the home page",
|
||||
"admin.config.general.session-duration": "Session Duration",
|
||||
"admin.config.general.session-duration.description": "Time in hours after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "Change your logo by uploading a new image. The image must be a PNG and should have the format 1:1.",
|
||||
"admin.config.general.logo.placeholder": "Chọn ảnh",
|
||||
|
||||
@@ -16,9 +16,9 @@ export default {
|
||||
"home.bullet.a.name": "完全自建",
|
||||
"home.bullet.a.description": "轻松使用私有服务器搭建文件共享平台",
|
||||
"home.bullet.b.name": "完全隐私",
|
||||
"home.bullet.b.description": "Your files are yours and will never be accessed by third parties.",
|
||||
"home.bullet.b.description": "您的文件只属于您,永远无法被第三方访问。",
|
||||
"home.bullet.c.name": "完全无限",
|
||||
"home.bullet.c.description": "Upload files as big as you want. Only your hard drive will be your limit.",
|
||||
"home.bullet.c.description": "您希望上传多大的文件都可以。硬盘容量的大小是您唯一的限制。",
|
||||
"home.button.start": "开始使用",
|
||||
"home.button.source": "源代码",
|
||||
// END /
|
||||
@@ -58,12 +58,12 @@ export default {
|
||||
// /auth/reset-password
|
||||
"resetPassword.title": "忘记密码?",
|
||||
"resetPassword.description": "请输入电子邮箱地址来接收重置密码邮件",
|
||||
"resetPassword.notify.success": "A message with a link to reset your password has been sent if the provided email exists.",
|
||||
"resetPassword.notify.success": "系统已向您的邮箱发送一条包含重置密码链接的邮件。(若该电子邮箱存在)",
|
||||
"resetPassword.button.back": "返回登录页面",
|
||||
"resetPassword.text.resetPassword": "重置密码",
|
||||
"resetPassword.text.enterNewPassword": "请输入新密码",
|
||||
"resetPassword.input.password": "新密码",
|
||||
"resetPassword.notify.passwordReset": "Your password has been successfully reset.",
|
||||
"resetPassword.notify.passwordReset": "您的密码已成功重置。",
|
||||
// /account
|
||||
"account.title": "我的账户",
|
||||
"account.card.info.title": "账户信息",
|
||||
@@ -73,7 +73,7 @@ export default {
|
||||
"account.card.password.title": "密码",
|
||||
"account.card.password.old": "旧密码",
|
||||
"account.card.password.new": "新密码",
|
||||
"account.card.password.noPasswordSet": "You do not have a password set. To sign in using your email and password, you need to create a password.",
|
||||
"account.card.password.noPasswordSet": "您还未设置密码。如果您想通过邮箱和密码登录,请先设置密码。",
|
||||
"account.notify.password.success": "密码更改成功!",
|
||||
"account.card.oauth.title": "社交账号登录",
|
||||
"account.card.oauth.github": "GitHub",
|
||||
@@ -85,7 +85,7 @@ export default {
|
||||
"account.card.oauth.unlink": "解除关联",
|
||||
"account.card.oauth.unlinked": "已解除关联",
|
||||
"account.modal.unlink.title": "解除关联",
|
||||
"account.modal.unlink.description": "Unlinking your social accounts may cause you to lose your account if you don't remember your login credentials",
|
||||
"account.modal.unlink.description": "如果您不记得您的用户名和密码,解除和社交账号的关联可能会导致丢失账户",
|
||||
"account.notify.oauth.unlinked.success": "解除关联成功",
|
||||
"account.card.security.title": "安全",
|
||||
"account.card.security.totp.enable.description": "请输入当前密码开启两步验证",
|
||||
@@ -121,15 +121,15 @@ export default {
|
||||
"account.shares.table.name": "共享后缀",
|
||||
"account.shares.table.description": "描述",
|
||||
"account.shares.table.visitors": "已访问",
|
||||
"account.shares.table.expiresAt": "Expires on",
|
||||
"account.shares.table.createdAt": "Created on",
|
||||
"account.shares.table.expiresAt": "过期于",
|
||||
"account.shares.table.createdAt": "创建于",
|
||||
"account.shares.table.size": "文件大小",
|
||||
"account.shares.table.password-protected": "Password protected",
|
||||
"account.shares.table.password-protected": "密码保护",
|
||||
"account.shares.table.visitor-count": "{count} of {max}",
|
||||
"account.shares.table.expiry-never": "Never",
|
||||
"account.shares.table.expiry-never": "永不",
|
||||
"account.shares.modal.share-informations": "共享信息",
|
||||
"account.shares.modal.share-link": "共享链接",
|
||||
"account.shares.modal.delete.title": "Delete share: {share}",
|
||||
"account.shares.modal.delete.title": "删除共享 {share}",
|
||||
"account.shares.modal.delete.description": "你真的想删除这个共享吗?",
|
||||
// END /account/shares
|
||||
// /account/reverseShares
|
||||
@@ -138,7 +138,7 @@ export default {
|
||||
"account.reverseShares.title.empty": "这里空空如也 👀",
|
||||
"account.reverseShares.description.empty": "你没有创建任何预留共享",
|
||||
// showCreateReverseShareModal.tsx
|
||||
"account.reverseShares.modal.title": "创建反向共享",
|
||||
"account.reverseShares.modal.title": "创建预留共享",
|
||||
"account.reverseShares.modal.expiration.label": "过期时间",
|
||||
"account.reverseShares.modal.expiration.minute-singular": "1 分钟",
|
||||
"account.reverseShares.modal.expiration.minute-plural": "分钟",
|
||||
@@ -153,12 +153,12 @@ export default {
|
||||
"account.reverseShares.modal.expiration.year-singular": "1 年",
|
||||
"account.reverseShares.modal.expiration.year-plural": "年",
|
||||
"account.reverseShares.modal.max-size.label": "共享文件上限",
|
||||
"account.reverseShares.modal.send-email": "Send email notifications",
|
||||
"account.reverseShares.modal.send-email.description": "Sends you an email notification when a share is created with this reverse share link.",
|
||||
"account.reverseShares.modal.send-email": "发送电子邮件通知",
|
||||
"account.reverseShares.modal.send-email.description": "当使用此预留共享链接创建共享时,向您发送电子邮件通知。",
|
||||
"account.reverseShares.modal.simplified": "简单模式",
|
||||
"account.reverseShares.modal.simplified.description": "Make it easy for the person uploading the file to share it with you. They will only be able to customize the name and description of the share.",
|
||||
"account.reverseShares.modal.simplified.description": "让上传者更轻松地与你共享文件。他们仅能自定义共享的名称和描述。",
|
||||
"account.reverseShares.modal.public-access": "公开访问",
|
||||
"account.reverseShares.modal.public-access.description": "Make the shares created with this reverse share public. If disabled, only you and the share creator will have access to view it.",
|
||||
"account.reverseShares.modal.public-access.description": "公开使用此预留共享创建的共享。如果禁用,则只有您和共享创建者才能查看。",
|
||||
"account.reverseShares.modal.max-use.label": "最大使用次数",
|
||||
"account.reverseShares.modal.max-use.description": "这个预留共享链接可被用于创建共享的最大使用次数",
|
||||
"account.reverseShare.never-expires": "这个预留共享永不过期",
|
||||
@@ -186,14 +186,14 @@ export default {
|
||||
"admin.users.table.username": "用户名",
|
||||
"admin.users.table.email": "电子邮件",
|
||||
"admin.users.table.admin": "管理员",
|
||||
"admin.users.edit.update.title": "Edit user: {username}",
|
||||
"admin.users.edit.update.title": "编辑用户 {username}",
|
||||
"admin.users.edit.update.admin-privileges": "管理员",
|
||||
"admin.users.edit.update.change-password.title": "更改密码",
|
||||
"admin.users.edit.update.change-password.field": "新密码",
|
||||
"admin.users.edit.update.change-password.button": "保存新密码",
|
||||
"admin.users.edit.update.notify.password.success": "密码更新成功!",
|
||||
"admin.users.edit.delete.title": "Delete user: {username} ?",
|
||||
"admin.users.edit.delete.description": "Do you really want to delete this user and all their shares?",
|
||||
"admin.users.edit.delete.title": "删除用户 {username} ?",
|
||||
"admin.users.edit.delete.description": "你真的想删除这个账户,并删除该用户所有的共享吗?",
|
||||
// showCreateUserModal.tsx
|
||||
"admin.users.modal.create.title": "创建用户",
|
||||
"admin.users.modal.create.username": "用户名",
|
||||
@@ -209,20 +209,20 @@ export default {
|
||||
"admin.shares.table.id": "共享 ID",
|
||||
"admin.shares.table.username": "创建者",
|
||||
"admin.shares.table.visitors": "访问者",
|
||||
"admin.shares.table.expires": "Expires on",
|
||||
"admin.shares.edit.delete.title": "Delete share: {id}",
|
||||
"admin.shares.table.expires": "过期于",
|
||||
"admin.shares.edit.delete.title": "删除共享 {id}",
|
||||
"admin.shares.edit.delete.description": "你真的要删除这个共享吗?",
|
||||
// END /admin/shares
|
||||
// /upload
|
||||
"upload.title": "上传",
|
||||
"upload.notify.confirm-leave": "Are you sure you want to leave this page? Your upload will be canceled.",
|
||||
"upload.notify.confirm-leave": "您确定要离开此页面吗?您的上传将被取消。",
|
||||
"upload.notify.generic-error": "创建共享的过程中发生了错误",
|
||||
"upload.notify.count-failed": "{count} 文件上传失败,请重试",
|
||||
"upload.reverse-share.error.invalid.title": "Invalid reverse share link",
|
||||
"upload.reverse-share.error.invalid.description": "This reverse share has expired or is invalid.",
|
||||
"upload.reverse-share.error.invalid.title": "无效的预留共享链接",
|
||||
"upload.reverse-share.error.invalid.description": "这个预留分享已过期或无效。",
|
||||
// Dropzone.tsx
|
||||
"upload.dropzone.title": "上传文件",
|
||||
"upload.dropzone.description": "Drag'n'drop files here to start your share. We only accept files up to {maxSize} in total.",
|
||||
"upload.dropzone.description": "拖放至此以上传文件,文件大小不能超过 {maxSize}。",
|
||||
"upload.dropzone.notify.file-too-big": "你的文件超过了最大上传限制 {maxSize}",
|
||||
// FileList.tsx
|
||||
"upload.filelist.name": "文件名",
|
||||
@@ -234,8 +234,8 @@ export default {
|
||||
"upload.modal.not-signed-in": "当前没有登录",
|
||||
"upload.modal.not-signed-in-description": "你将不能删除你的共享或查看访问次数",
|
||||
"upload.modal.expires.never": "永不",
|
||||
"upload.modal.expires.never-long": "Permanent share",
|
||||
"upload.modal.expires.error.too-long": "Expiration date exceeds the maximum of {max}.",
|
||||
"upload.modal.expires.never-long": "永久分享",
|
||||
"upload.modal.expires.error.too-long": "有效期超过 {max} 的最大值。",
|
||||
"upload.modal.link.label": "共享链接",
|
||||
"upload.modal.expires.label": "过期时间",
|
||||
"upload.modal.expires.minute-singular": "1 分钟",
|
||||
@@ -278,16 +278,16 @@ export default {
|
||||
"share.error.access-denied.title": "私有共享",
|
||||
"share.error.access-denied.description": "当前账户没有权限访问此共享",
|
||||
"share.modal.password.title": "需要密码",
|
||||
"share.modal.password.description": "Please enter the password to acces this share.",
|
||||
"share.modal.password.description": "请输入密码以访问此共享。",
|
||||
"share.modal.password": "密码",
|
||||
"share.modal.error.invalid-password": "密码错误",
|
||||
"share.button.download-all": "全部下载",
|
||||
"share.notify.download-all-preparing": "The share is being prepared. Please try again in a few minutes.",
|
||||
"share.notify.download-all-preparing": "该共享正在处理中,请稍等片刻。",
|
||||
"share.modal.file-link": "文件链接",
|
||||
"share.table.name": "文件名",
|
||||
"share.table.size": "文件大小",
|
||||
"share.modal.file-preview.error.not-supported.title": "该文件类型不支持预览",
|
||||
"share.modal.file-preview.error.not-supported.description": "Previews are not supported for this type of files. Please download the file to view it.",
|
||||
"share.modal.file-preview.error.not-supported.description": "这种类型的文件不支持预览。请下载文件查看。",
|
||||
// END /share/[id]
|
||||
// /share/[id]/edit
|
||||
"share.edit.title": "编辑 {shareId}",
|
||||
@@ -296,12 +296,14 @@ export default {
|
||||
"share.edit.notify.save-success": "共享已更新成功",
|
||||
// END /share/[id]/edit
|
||||
// /imprint
|
||||
"imprint.title": "Imprint",
|
||||
"imprint.title": "版权信息",
|
||||
// END /imprint
|
||||
// /privacy
|
||||
"privacy.title": "Privacy Policy",
|
||||
"privacy.title": "隐私政策",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "配置管理",
|
||||
"admin.config.category.general": "通用",
|
||||
"admin.config.category.share": "共享",
|
||||
@@ -313,49 +315,49 @@ export default {
|
||||
"admin.config.general.app-url": "App 的地址",
|
||||
"admin.config.general.app-url.description": "Pingvin Share 的 URL 地址",
|
||||
"admin.config.general.secure-cookies": "Secure cookies",
|
||||
"admin.config.general.secure-cookies.description": "Whether to set the secure flag on cookies. If enabled, the site will not function when accessed over HTTP.",
|
||||
"admin.config.general.secure-cookies.description": "是否为 cookie 设置安全标志。如果启用,当通过 HTTP 访问时站点将无法运行。",
|
||||
"admin.config.general.show-home-page": "显示首页",
|
||||
"admin.config.general.show-home-page.description": "是否显示首页",
|
||||
"admin.config.general.session-duration": "会话时长",
|
||||
"admin.config.general.session-duration.description": "用户必须重新登录的时间 (默认:3 个月)",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "上传你的个性化 Logo,图片必须是长宽比 1:1 的 PNG 格式",
|
||||
"admin.config.general.logo.placeholder": "选择图片",
|
||||
"admin.config.email.enable-share-email-recipients": "Enable email recipient sharing",
|
||||
"admin.config.email.enable-share-email-recipients.description": "Whether to allow email sharing with recipients. Only enable this if SMTP is activated.",
|
||||
"admin.config.email.enable-share-email-recipients": "启用邮件收件人共享",
|
||||
"admin.config.email.enable-share-email-recipients.description": "是否允许与收件人分享电子邮件。只有在SMTP被激活时才启用此功能。",
|
||||
"admin.config.email.share-recipients-subject": "共享邮件通知主题",
|
||||
"admin.config.email.share-recipients-subject.description": "发送共享邮件通知的邮件主题",
|
||||
"admin.config.email.share-recipients-message": "共享邮件通知内容",
|
||||
"admin.config.email.share-recipients-message.description": "Message which gets sent to the share recipients. Available variables:\n {creator} - The username of the creator of the share\n {creatorEmail} - The email of the creator of the share\n {shareUrl} - The URL of the share\n {desc} - The description of the share\n {expires} - The expiration date of the share\n These variables will be replaced with the actual value.",
|
||||
"admin.config.email.share-recipients-message.description": "发给接收者的共享邮件通知的具体内容。可选的变量有:\n {creator} - 该共享的创建者\n {creatorEmail} - 共享创建者的电子邮箱\n {shareUrl} - 该共享的链接\n {desc} - 该共享的描述\n {expires} - 该共享的过期时间\n 这些变量会被实际的值所替代。",
|
||||
"admin.config.email.reverse-share-subject": "预留共享邮件通知主题",
|
||||
"admin.config.email.reverse-share-subject.description": "Subject of the sent email when someone created a share with your reverse share link.",
|
||||
"admin.config.email.reverse-share-subject.description": "当有人使用您的预留共享链接创建共享时发送电子邮件的主题",
|
||||
"admin.config.email.reverse-share-message": "预留共享邮件通知内容",
|
||||
"admin.config.email.reverse-share-message.description": "当有人使用了你的预留共享链接时,发送的通知内容。{shareUrl} 会被创建者的用户名和共享链接代替",
|
||||
"admin.config.email.reset-password-subject": "重置密码邮件通知主题",
|
||||
"admin.config.email.reset-password-subject.description": "Subject of the sent email when a user requests a password reset.",
|
||||
"admin.config.email.reset-password-subject.description": "当用户发起重置密码时,发送的重置密码邮件通知主题",
|
||||
"admin.config.email.reset-password-message": "重置密码邮件通知内容",
|
||||
"admin.config.email.reset-password-message.description": "当用户发起重置密码时,重置密码邮件通知内容。{url} 会被重置密码链接代替",
|
||||
"admin.config.email.invite-subject": "邀请邮件通知主题",
|
||||
"admin.config.email.invite-subject.description": "Subject of the sent email when an admin invites a user.",
|
||||
"admin.config.email.invite-subject.description": "当管理员邀请用户时,发送的邀请邮件通知主题",
|
||||
"admin.config.email.invite-message": "邀请邮件通知内容",
|
||||
"admin.config.email.invite-message.description": "Message which gets sent when an admin invites a user. {url} will be replaced with the invite URL, {email} with the email and {password} with the users password.",
|
||||
"admin.config.email.invite-message.description": "管理员邀请用户时发送的消息。{url} 将被替换为邀请链接,{email} 将被替换为电子邮件,{password} 将被替换为用户的密码。",
|
||||
"admin.config.share.allow-registration": "允许注册",
|
||||
"admin.config.share.allow-registration.description": "是否允许注册",
|
||||
"admin.config.share.allow-unauthenticated-shares": "是否允许未验证的共享",
|
||||
"admin.config.share.allow-unauthenticated-shares.description": "是否允许未验证的用户创建共享",
|
||||
"admin.config.share.max-expiration": "最长过期时间",
|
||||
"admin.config.share.max-expiration.description": "Maximum share expiration. Set to 0 to allow unlimited expiration.",
|
||||
"admin.config.share.share-id-length": "Default share ID length",
|
||||
"admin.config.share.share-id-length.description": "Default length for the generated ID of a share. This value is also used to generate links for reverse shares. A value below 8 is not considered secure.",
|
||||
"admin.config.share.max-expiration.description": "“最长过期时间”以小时为单位,如果将其设置为“0”则为永不过期。",
|
||||
"admin.config.share.share-id-length": "默认共享ID长度",
|
||||
"admin.config.share.share-id-length.description": "生成的共享 ID 的默认长度。该值也用于生成预留共享的链接。低于 8 的值不安全。",
|
||||
"admin.config.share.max-size": "最大文件上限",
|
||||
"admin.config.share.max-size.description": "最大文件上限",
|
||||
"admin.config.share.zip-compression-level": "Zip 文件压缩质量",
|
||||
"admin.config.share.zip-compression-level.description": "调整压缩质量来平衡压缩文件的大小和压缩的速度。有效值介于 0 和 9 之间,0 为不压缩,9 为最高质量压缩。 ",
|
||||
"admin.config.share.chunk-size": "块大小",
|
||||
"admin.config.share.chunk-size.description": "Adjust the chunk size for your uploads to balance efficiency and reliability according to your internet connection. Smaller chunks can enhance success rates for unstable connections, while larger chunks make uploads faster for stable connections.",
|
||||
"admin.config.share.chunk-size.description": "根据你的互联网连接情况调整上传文件的块大小(以字节为单位),以平衡效率和可靠性。 较小的块有助于提高不稳定网络环境中的上传成功率,而较大的块则可以加快稳定网络环境中的上传速度。",
|
||||
"admin.config.share.auto-open-share-modal": "自动打开创建共享对话框",
|
||||
"admin.config.share.auto-open-share-modal.description": "每当用户选择完将要被上传的文件后,自动打开创建共享的对话框。",
|
||||
"admin.config.smtp.enabled": "Enable",
|
||||
"admin.config.smtp.enabled": "启用",
|
||||
"admin.config.smtp.enabled.description": "是否开启 SMTP,仅当输入主机名、端口、发送邮箱、用户名和密码后开启",
|
||||
"admin.config.smtp.host": "主机名",
|
||||
"admin.config.smtp.host.description": "SMTP 主机名",
|
||||
@@ -399,7 +401,7 @@ export default {
|
||||
"admin.config.oauth.discord-enabled": "Discord",
|
||||
"admin.config.oauth.discord-enabled.description": "是否启用 Discord 账号登录",
|
||||
"admin.config.oauth.discord-limited-users": "Discord limited users",
|
||||
"admin.config.oauth.discord-limited-users.description": "Limit signing in to specific users by their Discord ID. Leave it blank to disable.",
|
||||
"admin.config.oauth.discord-limited-users.description": "使用Discord ID限制登录到特定的用户。留空以禁用。",
|
||||
"admin.config.oauth.discord-limited-guild": "Discord 的 limited server ID",
|
||||
"admin.config.oauth.discord-limited-guild.description": "限制特定服务器中的用户登录。留空来禁用。",
|
||||
"admin.config.oauth.discord-client-id": "Discord 的 Client ID",
|
||||
@@ -410,70 +412,70 @@ export default {
|
||||
"admin.config.oauth.oidc-enabled.description": "是否启用 OpenID Connect 登录",
|
||||
"admin.config.oauth.oidc-discovery-uri": "OpenID Connect 的 Discovery URI",
|
||||
"admin.config.oauth.oidc-discovery-uri.description": "OpenID Connect OAuth App 的 Discovery URI",
|
||||
"admin.config.oauth.oidc-sign-out": "Sign out from OpenID Connect",
|
||||
"admin.config.oauth.oidc-sign-out.description": "Whether the “Sign out” button will sign out from the OpenID Connect provider",
|
||||
"admin.config.oauth.oidc-sign-out": "从 OpenID Connect 注销",
|
||||
"admin.config.oauth.oidc-sign-out.description": "“注销”按钮是否会退出OpenID连接提供商",
|
||||
"admin.config.oauth.oidc-scope": "OpenID Connect scope",
|
||||
"admin.config.oauth.oidc-scope.description": "Scopes which should be requested from the OpenID Connect provider.",
|
||||
"admin.config.oauth.oidc-scope.description": "从 OpenID Connect 提供商请求的范围。",
|
||||
"admin.config.oauth.oidc-username-claim": "OpenID Connect 用户名请求",
|
||||
"admin.config.oauth.oidc-username-claim.description": "OpenID Connect ID token 中的用户名请求。如果您不知道这项配置是什么,请留空。",
|
||||
"admin.config.oauth.oidc-role-path": "Path to roles in OpenID Connect token",
|
||||
"admin.config.oauth.oidc-role-path.description": "Must be a valid JMES path referencing an array of roles. " + "Managing access rights using OpenID Connect roles is only recommended if no other identity provider is configured and password login is disabled. " + "Leave it blank if you don't know what this config is.",
|
||||
"admin.config.oauth.oidc-role-general-access": "OpenID Connect role for general access",
|
||||
"admin.config.oauth.oidc-role-general-access.description": "Role required for general access. Must be present in a user’s roles for them to log in. " + "Leave it blank if you don't know what this config is.",
|
||||
"admin.config.oauth.oidc-role-admin-access": "OpenID Connect role for admin access",
|
||||
"admin.config.oauth.oidc-role-admin-access.description": "Role required for administrative access. Must be present in a user’s roles for them to access the admin panel. " + "Leave it blank if you don't know what this config is.",
|
||||
"admin.config.oauth.oidc-role-path": "在 OpenID Connect 令牌中的角色路径",
|
||||
"admin.config.oauth.oidc-role-path.description": "Must be a valid JMES path referencing an array of roles. " + "只有在没有配置其他身份提供商且密码登录被禁用的情况下,才建议使用 OpenID Connect 角色来管理访问权限。 " + "如果您不知道此配置是什么,请留空。",
|
||||
"admin.config.oauth.oidc-role-general-access": "常规访问的 OpenID Connect 角色",
|
||||
"admin.config.oauth.oidc-role-general-access.description": "一般访问所需的角色。必须在用户角色中显示才能登录。 " + "如果您不知道此配置是什么,请留空。",
|
||||
"admin.config.oauth.oidc-role-admin-access": "管理员访问的 OpenID Connect 角色",
|
||||
"admin.config.oauth.oidc-role-admin-access.description": "管理权限所需的角色。必须在用户角色中显示他们才能访问管理面板。 " + "如果您不知道此配置是什么,请留空。",
|
||||
"admin.config.oauth.oidc-client-id": "OpenID Connect 的 Client ID",
|
||||
"admin.config.oauth.oidc-client-id.description": "OpenID Connect OAuth App 的 Client ID",
|
||||
"admin.config.oauth.oidc-client-secret": "OpenID Connect 的 Client secret",
|
||||
"admin.config.oauth.oidc-client-secret.description": "OpenID Connect OAuth App 的 Client secret",
|
||||
"admin.config.category.ldap": "LDAP",
|
||||
"admin.config.ldap.enabled": "Enable LDAP",
|
||||
"admin.config.ldap.enabled": "启用 LDAP",
|
||||
"admin.config.ldap.enabled.description": "使用 LDAP 身份认证进行用户登录",
|
||||
"admin.config.ldap.url": "Server URL",
|
||||
"admin.config.ldap.url": "服务器 URL",
|
||||
"admin.config.ldap.url.description": "LDAP 服务器的 URL",
|
||||
"admin.config.ldap.bind-dn": "Bind DN",
|
||||
"admin.config.ldap.bind-dn.description": "Default user used to perform the user search",
|
||||
"admin.config.ldap.bind-dn.description": "用于执行用户搜索的默认用户",
|
||||
"admin.config.ldap.bind-password": "Bind password",
|
||||
"admin.config.ldap.bind-password.description": "Password used to perform the user search",
|
||||
"admin.config.ldap.bind-password.description": "用于执行用户搜索的密码",
|
||||
"admin.config.ldap.search-base": "User base",
|
||||
"admin.config.ldap.search-base.description": "Base location, where the user search will be performed",
|
||||
"admin.config.ldap.search-query": "User query",
|
||||
"admin.config.ldap.search-base.description": "进行用户搜索的基本位置",
|
||||
"admin.config.ldap.search-query": "用户查询",
|
||||
"admin.config.ldap.search-query.description": "将用于在 'User base'中搜索 LDAP 用户。%username% 可以作为用户输入的占位符。",
|
||||
"admin.config.ldap.admin-groups": "Admin group",
|
||||
"admin.config.ldap.admin-groups": "管理员群组",
|
||||
"admin.config.ldap.admin-groups.description": "Group required for administrative access.",
|
||||
"admin.config.ldap.field-name-member-of": "User groups attribute name",
|
||||
"admin.config.ldap.field-name-member-of.description": "LDAP attribute name for the groups, an user is a member of. This is used when checking for the admin group.",
|
||||
"admin.config.ldap.field-name-email": "User email attribute name",
|
||||
"admin.config.ldap.field-name-email.description": "LDAP attribute name for the email of an user.",
|
||||
"admin.config.notify.success": "Configuration updated successfully.",
|
||||
"admin.config.notify.logo-success": "Logo updated successfully. It may take a few minutes to update on the website.",
|
||||
"admin.config.notify.no-changes": "No changes to save.",
|
||||
"admin.config.category.s3": "S3",
|
||||
"admin.config.s3.enabled": "Enabled",
|
||||
"admin.config.s3.enabled.description": "Whether S3 should be used to store the shared files instead of the local file system.",
|
||||
"admin.config.notify.logo-success": "Logo 更新成功。可能需要几分钟时间才能在网站上更新。",
|
||||
"admin.config.notify.no-changes": "没有要保存的更改。",
|
||||
"admin.config.category.s3": "对象存储",
|
||||
"admin.config.s3.enabled": "启用",
|
||||
"admin.config.s3.enabled.description": "是否使用 S3 来存储共享文件而不是本地文件系统。",
|
||||
"admin.config.s3.endpoint": "Endpoint",
|
||||
"admin.config.s3.endpoint.description": "The URL of the S3 bucket.",
|
||||
"admin.config.s3.region": "Region",
|
||||
"admin.config.s3.region.description": "The region of the S3 bucket.",
|
||||
"admin.config.s3.bucket-name": "Bucket name",
|
||||
"admin.config.s3.bucket-name": "Bucket名称",
|
||||
"admin.config.s3.bucket-name.description": "The name of the S3 bucket.",
|
||||
"admin.config.s3.bucket-path": "Path",
|
||||
"admin.config.s3.bucket-path.description": "The default path which should be used to store the files in the S3 bucket.",
|
||||
"admin.config.s3.bucket-path": "路径",
|
||||
"admin.config.s3.bucket-path.description": "用于在 S3 桶中存储文件的默认路径。",
|
||||
"admin.config.s3.key": "Key",
|
||||
"admin.config.s3.key.description": "The key which allows you to access the S3 bucket.",
|
||||
"admin.config.s3.key.description": "允许您访问 S3 桶的密钥。",
|
||||
"admin.config.s3.secret": "Secret",
|
||||
"admin.config.s3.secret.description": "The secret which allows you to access the S3 bucket.",
|
||||
"admin.config.category.legal": "Legal",
|
||||
"admin.config.legal.enabled": "Enable legal notices",
|
||||
"admin.config.legal.enabled.description": "Whether to show a link to imprint and privacy policy in the footer.",
|
||||
"admin.config.legal.imprint-text": "Imprint text",
|
||||
"admin.config.legal.imprint-text.description": "The text which should be shown in the imprint. Supports Markdown. Leave blank to link to an external imprint page.",
|
||||
"admin.config.legal.imprint-url": "Imprint URL",
|
||||
"admin.config.legal.imprint-url.description": "If you already have an imprint page you can link it here instead of using the text field.",
|
||||
"admin.config.legal.privacy-policy-text": "Privacy policy text",
|
||||
"admin.config.legal.privacy-policy-text.description": "The text which should be shown in the privacy policy. Supports Markdown. Leave blank to link to an external privacy policy page.",
|
||||
"admin.config.legal.privacy-policy-url": "Privacy policy URL",
|
||||
"admin.config.legal.privacy-policy-url.description": "If you already have a privacy policy page you can link it here instead of using the text field.",
|
||||
"admin.config.s3.secret.description": "允许您访问 S3 桶的密钥。",
|
||||
"admin.config.category.legal": "合规",
|
||||
"admin.config.legal.enabled": "启用合规提醒",
|
||||
"admin.config.legal.enabled.description": "是否在页脚中显示版权信息和隐私政策。",
|
||||
"admin.config.legal.imprint-text": "版权信息",
|
||||
"admin.config.legal.imprint-text.description": "文本将会显示在版权信息中。支持Markdown。留空以链接到版权信息页面。",
|
||||
"admin.config.legal.imprint-url": "版权信息 URL",
|
||||
"admin.config.legal.imprint-url.description": "如果您已经有一个版权信息页面,您可以在此链接它,而不是使用文本字段。",
|
||||
"admin.config.legal.privacy-policy-text": "隐私政策文本",
|
||||
"admin.config.legal.privacy-policy-text.description": "文本将会显示在隐私政策页面中。支持Markdown。留空以链接到隐私政策页面。",
|
||||
"admin.config.legal.privacy-policy-url": "隐私政策网址",
|
||||
"admin.config.legal.privacy-policy-url.description": "如果您已经有一个隐私政策页面,您可以在此链接它,而不是使用文本字段。",
|
||||
// 404
|
||||
"404.description": "当前的页面走丢啦",
|
||||
"404.button.home": "返回主页",
|
||||
@@ -488,10 +490,10 @@ export default {
|
||||
"error.msg.no_user": "用户关联的这个 {0} 账户不存在。",
|
||||
"error.msg.no_email": "无法从 {0} 这个账户获取邮箱地址。",
|
||||
"error.msg.already_linked": "{0} 这个账户已经关联到另一个账号。",
|
||||
"error.msg.not_linked": "This {0} account hasn't been linked to any account yet.",
|
||||
"error.msg.not_linked": "这个 {0} 账户尚未关联到任何账号。",
|
||||
"error.msg.unverified_account": "{0} 这个账户尚未验证,请在验证后重试。",
|
||||
"error.msg.user_not_allowed": "您无权登录。",
|
||||
"error.msg.cannot_get_user_info": "Cannot get your user info from this {0} account.",
|
||||
"error.msg.cannot_get_user_info": "无法从 {0} 这个账户获取您的用户信息。",
|
||||
"error.param.provider_github": "GitHub",
|
||||
"error.param.provider_google": "谷歌",
|
||||
"error.param.provider_microsoft": "Microsoft",
|
||||
@@ -509,9 +511,9 @@ export default {
|
||||
"common.button.generate": "生成",
|
||||
"common.button.done": "完成",
|
||||
"common.text.link": "链接",
|
||||
"common.text.navigate-to-link": "Visit link",
|
||||
"common.text.navigate-to-link": "访问链接",
|
||||
"common.text.or": "或",
|
||||
"common.text.redirecting": "Redirecting...",
|
||||
"common.text.redirecting": "正在跳转中...",
|
||||
"common.button.go-back": "返回",
|
||||
"common.button.go-home": "返回主页",
|
||||
"common.notify.copied": "已复制到剪贴板",
|
||||
@@ -522,7 +524,7 @@ export default {
|
||||
"common.error.invalid-email": "邮件地址不可用",
|
||||
"common.error.too-short": "必须不少于 {length} 个字符",
|
||||
"common.error.too-long": "必须不超过 {length} 个字符",
|
||||
"common.error.number-too-small": "Must be at least {min}",
|
||||
"common.error.number-too-small": "必须至多为 {min}",
|
||||
"common.error.number-too-large": "必须至多为 {max}",
|
||||
"common.error.exact-length": "必须为 {length} 个字符",
|
||||
"common.error.invalid-number": "必须为数字",
|
||||
|
||||
@@ -278,7 +278,7 @@ export default {
|
||||
"share.error.access-denied.title": "私人分享",
|
||||
"share.error.access-denied.description": "您沒有權限存取此檔案",
|
||||
"share.modal.password.title": "需要密碼",
|
||||
"share.modal.password.description": "請輸入密碼來存取此檔案",
|
||||
"share.modal.password.description": "Please enter the password to access this share.",
|
||||
"share.modal.password": "密碼",
|
||||
"share.modal.error.invalid-password": "密碼錯誤",
|
||||
"share.button.download-all": "全部下載",
|
||||
@@ -302,6 +302,8 @@ export default {
|
||||
"privacy.title": "Privacy Policy",
|
||||
// END /privacy
|
||||
// /admin/config
|
||||
"admin.config.config-file-warning.title": "Configuration file present",
|
||||
"admin.config.config-file-warning.description": "As you have a configured Pingvin Share with a configuration file, you can't change the configuration through the UI.",
|
||||
"admin.config.title": "配置管理",
|
||||
"admin.config.category.general": "通用",
|
||||
"admin.config.category.share": "分享",
|
||||
@@ -317,7 +319,7 @@ export default {
|
||||
"admin.config.general.show-home-page": "顯示首頁",
|
||||
"admin.config.general.show-home-page.description": "是否顯示首頁",
|
||||
"admin.config.general.session-duration": "工作階段持續時間",
|
||||
"admin.config.general.session-duration.description": "使用者需要必須要重新登入的最長時間 (預設: 3 個月)",
|
||||
"admin.config.general.session-duration.description": "Time after which a user must log in again (default: 3 months).",
|
||||
"admin.config.general.logo": "Logo",
|
||||
"admin.config.general.logo.description": "上傳個性化 Logo,圖片必須是長寬比 1:1 的 PNG 格式",
|
||||
"admin.config.general.logo.placeholder": "選擇圖片",
|
||||
|
||||
@@ -413,7 +413,7 @@ const Account = () => {
|
||||
onConfirm: async () => {
|
||||
await userService
|
||||
.removeCurrentUser()
|
||||
.then(window.location.reload)
|
||||
.then(() => window.location.reload())
|
||||
.catch(toast.axiosError);
|
||||
},
|
||||
})
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import {
|
||||
Alert,
|
||||
AppShell,
|
||||
Box,
|
||||
Button,
|
||||
@@ -13,6 +14,7 @@ import { useMediaQuery } from "@mantine/hooks";
|
||||
|
||||
import { useRouter } from "next/router";
|
||||
import { useEffect, useState } from "react";
|
||||
import { TbInfoCircle } from "react-icons/tb";
|
||||
import { FormattedMessage } from "react-intl";
|
||||
import Meta from "../../../components/Meta";
|
||||
import AdminConfigInput from "../../../components/admin/configuration/AdminConfigInput";
|
||||
@@ -46,6 +48,10 @@ export default function AppShellDemo() {
|
||||
|
||||
const [logo, setLogo] = useState<File | null>(null);
|
||||
|
||||
const isEditingAllowed = (): boolean => {
|
||||
return !configVariables || configVariables[0].allowEdit;
|
||||
};
|
||||
|
||||
const saveConfigVariables = async () => {
|
||||
if (logo) {
|
||||
configService
|
||||
@@ -132,6 +138,17 @@ export default function AppShellDemo() {
|
||||
) : (
|
||||
<>
|
||||
<Stack>
|
||||
{!isEditingAllowed() && (
|
||||
<Alert
|
||||
mb={"lg"}
|
||||
variant="light"
|
||||
color="primary"
|
||||
title={t("admin.config.config-file-warning.title")}
|
||||
icon={<TbInfoCircle />}
|
||||
>
|
||||
<FormattedMessage id="admin.config.config-file-warning.description" />
|
||||
</Alert>
|
||||
)}
|
||||
<Title mb="md" order={3}>
|
||||
{t("admin.config.category." + categoryId)}
|
||||
</Title>
|
||||
|
||||
@@ -54,19 +54,22 @@ const Admin = () => {
|
||||
]);
|
||||
|
||||
useEffect(() => {
|
||||
configService.isNewReleaseAvailable().then((isNewReleaseAvailable) => {
|
||||
if (isNewReleaseAvailable) {
|
||||
setManagementOptions([
|
||||
...managementOptions,
|
||||
{
|
||||
title: "Update",
|
||||
icon: TbRefresh,
|
||||
route:
|
||||
"https://github.com/stonith404/pingvin-share/releases/latest",
|
||||
},
|
||||
]);
|
||||
}
|
||||
});
|
||||
configService
|
||||
.isNewReleaseAvailable()
|
||||
.then((isNewReleaseAvailable) => {
|
||||
if (isNewReleaseAvailable) {
|
||||
setManagementOptions([
|
||||
...managementOptions,
|
||||
{
|
||||
title: "Update",
|
||||
icon: TbRefresh,
|
||||
route:
|
||||
"https://github.com/stonith404/pingvin-share/releases/latest",
|
||||
},
|
||||
]);
|
||||
}
|
||||
})
|
||||
.catch();
|
||||
}, []);
|
||||
|
||||
return (
|
||||
|
||||
@@ -18,6 +18,7 @@ import shareService from "../../services/share.service";
|
||||
import { FileUpload } from "../../types/File.type";
|
||||
import { CreateShare, Share } from "../../types/share.type";
|
||||
import toast from "../../utils/toast.util";
|
||||
import { useRouter } from "next/router";
|
||||
|
||||
const promiseLimit = pLimit(3);
|
||||
let errorToastShown = false;
|
||||
@@ -33,6 +34,7 @@ const Upload = ({
|
||||
simplified: boolean;
|
||||
}) => {
|
||||
const modals = useModals();
|
||||
const router = useRouter();
|
||||
const t = useTranslate();
|
||||
|
||||
const { user } = useUser();
|
||||
@@ -54,7 +56,8 @@ const Upload = ({
|
||||
setisUploading(true);
|
||||
|
||||
try {
|
||||
createdShare = await shareService.create(share);
|
||||
const isReverseShare = router.pathname != "/upload";
|
||||
createdShare = await shareService.create(share, isReverseShare);
|
||||
} catch (e) {
|
||||
toast.axiosError(e);
|
||||
setisUploading(false);
|
||||
|
||||
@@ -15,7 +15,10 @@ const list = async (): Promise<MyShare[]> => {
|
||||
return (await api.get(`shares/all`)).data;
|
||||
};
|
||||
|
||||
const create = async (share: CreateShare) => {
|
||||
const create = async (share: CreateShare, isReverseShare = false) => {
|
||||
if (!isReverseShare) {
|
||||
deleteCookie("reverse_share_token");
|
||||
}
|
||||
return (await api.post("shares", share)).data;
|
||||
};
|
||||
|
||||
|
||||
@@ -16,6 +16,7 @@ export type AdminConfig = Config & {
|
||||
secret: boolean;
|
||||
description: string;
|
||||
obscured: boolean;
|
||||
allowEdit: boolean;
|
||||
};
|
||||
|
||||
export type AdminConfigGroupedByCategory = {
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "pingvin-share",
|
||||
"version": "1.8.1",
|
||||
"version": "1.10.2",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "pingvin-share",
|
||||
"version": "1.8.1",
|
||||
"version": "1.10.2",
|
||||
"devDependencies": {
|
||||
"conventional-changelog-cli": "^3.0.0"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "pingvin-share",
|
||||
"version": "1.8.1",
|
||||
"version": "1.10.2",
|
||||
"scripts": {
|
||||
"format": "cd frontend && npm run format && cd ../backend && npm run format",
|
||||
"lint": "cd frontend && npm run lint && cd ../backend && npm run lint",
|
||||
|
||||
66
scripts/generate-example-config.ts
Normal file
66
scripts/generate-example-config.ts
Normal file
@@ -0,0 +1,66 @@
|
||||
import * as fs from "fs";
|
||||
import * as yaml from "yaml";
|
||||
import { configVariables } from "../backend/prisma/seed/config.seed";
|
||||
import translations from "../frontend/src/i18n/translations/en-US";
|
||||
|
||||
// Prepare an object that only contains the categories, keys and values
|
||||
const configVariablesWithDefaultValues = {};
|
||||
for (const [category, variables] of Object.entries(configVariables)) {
|
||||
if (category == "internal") continue;
|
||||
for (const [variableName, { defaultValue }] of Object.entries(variables)) {
|
||||
if (!configVariablesWithDefaultValues[category]) {
|
||||
configVariablesWithDefaultValues[category] = {};
|
||||
}
|
||||
configVariablesWithDefaultValues[category][variableName] = defaultValue;
|
||||
}
|
||||
}
|
||||
|
||||
// As `initUser` is not part of the `configVariables` object, we add it manually
|
||||
configVariablesWithDefaultValues["initUser"] = {
|
||||
enabled: false,
|
||||
username: "admin",
|
||||
email: "admin@example.com",
|
||||
password: "my-secure-password",
|
||||
isAdmin: true,
|
||||
ldapDN: "",
|
||||
};
|
||||
|
||||
// Create the yaml document
|
||||
const doc: any = new yaml.Document(configVariablesWithDefaultValues);
|
||||
|
||||
// Add the descriptions imported from `en-US.ts` as comments
|
||||
for (const category of doc.contents.items) {
|
||||
// As `initUser` can't be configured from the UI, we have to add the description manually
|
||||
if (category.key.value === "initUser") {
|
||||
category.key.commentBefore =
|
||||
"This configuration is used to create the initial user when the application is started for the first time.\n";
|
||||
category.key.commentBefore +=
|
||||
"Make sure to change at least the password as soon as you log in!";
|
||||
}
|
||||
|
||||
for (const variable of category.value.items) {
|
||||
variable.key.commentBefore = getDescription(
|
||||
category.key.value,
|
||||
variable.key.value
|
||||
);
|
||||
}
|
||||
}
|
||||
doc.commentBefore =
|
||||
"This configuration is pre-filled with the default values.\n";
|
||||
doc.commentBefore +=
|
||||
"You can remove keys you don't want to set. If a key is missing, the value set in the UI will be used; if that is also unset, the default value applies.";
|
||||
|
||||
// Write the YAML content to a file
|
||||
fs.writeFileSync("../config.example.yaml", doc.toString({ indent: 2 }), "utf8");
|
||||
console.log("YAML file generated successfully!");
|
||||
|
||||
// Helper functions
|
||||
function getDescription(category: string, name: string) {
|
||||
return translations[
|
||||
`admin.config.${category}.${camelToKebab(name)}.description`
|
||||
];
|
||||
}
|
||||
|
||||
function camelToKebab(str: string) {
|
||||
return str.replace(/[A-Z]/g, (letter) => `-${letter.toLowerCase()}`);
|
||||
}
|
||||
229
scripts/package-lock.json
generated
Normal file
229
scripts/package-lock.json
generated
Normal file
@@ -0,0 +1,229 @@
|
||||
{
|
||||
"name": "scripts",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "scripts",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"yaml": "^2.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.13.5",
|
||||
"ts-node": "^10.9.2"
|
||||
}
|
||||
},
|
||||
"node_modules/@cspotcode/source-map-support": {
|
||||
"version": "0.8.1",
|
||||
"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
|
||||
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"@jridgewell/trace-mapping": "0.3.9"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
}
|
||||
},
|
||||
"node_modules/@jridgewell/resolve-uri": {
|
||||
"version": "3.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
||||
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@jridgewell/sourcemap-codec": {
|
||||
"version": "1.5.0",
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
|
||||
"integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@jridgewell/trace-mapping": {
|
||||
"version": "0.3.9",
|
||||
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
|
||||
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"@jridgewell/resolve-uri": "^3.0.3",
|
||||
"@jridgewell/sourcemap-codec": "^1.4.10"
|
||||
}
|
||||
},
|
||||
"node_modules/@tsconfig/node10": {
|
||||
"version": "1.0.11",
|
||||
"resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz",
|
||||
"integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@tsconfig/node12": {
|
||||
"version": "1.0.11",
|
||||
"resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz",
|
||||
"integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@tsconfig/node14": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz",
|
||||
"integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@tsconfig/node16": {
|
||||
"version": "1.0.4",
|
||||
"resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz",
|
||||
"integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@types/node": {
|
||||
"version": "22.13.5",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.5.tgz",
|
||||
"integrity": "sha512-+lTU0PxZXn0Dr1NBtC7Y8cR21AJr87dLLU953CWA6pMxxv/UDc7jYAY90upcrie1nRcD6XNG5HOYEDtgW5TxAg==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"undici-types": "~6.20.0"
|
||||
}
|
||||
},
|
||||
"node_modules/acorn": {
|
||||
"version": "8.14.0",
|
||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
|
||||
"integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
|
||||
"dev": true,
|
||||
"bin": {
|
||||
"acorn": "bin/acorn"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/acorn-walk": {
|
||||
"version": "8.3.4",
|
||||
"resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz",
|
||||
"integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"acorn": "^8.11.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/arg": {
|
||||
"version": "4.1.3",
|
||||
"resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz",
|
||||
"integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/create-require": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz",
|
||||
"integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/diff": {
|
||||
"version": "4.0.2",
|
||||
"resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz",
|
||||
"integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": ">=0.3.1"
|
||||
}
|
||||
},
|
||||
"node_modules/make-error": {
|
||||
"version": "1.3.6",
|
||||
"resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz",
|
||||
"integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/ts-node": {
|
||||
"version": "10.9.2",
|
||||
"resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz",
|
||||
"integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"@cspotcode/source-map-support": "^0.8.0",
|
||||
"@tsconfig/node10": "^1.0.7",
|
||||
"@tsconfig/node12": "^1.0.7",
|
||||
"@tsconfig/node14": "^1.0.0",
|
||||
"@tsconfig/node16": "^1.0.2",
|
||||
"acorn": "^8.4.1",
|
||||
"acorn-walk": "^8.1.1",
|
||||
"arg": "^4.1.0",
|
||||
"create-require": "^1.1.0",
|
||||
"diff": "^4.0.1",
|
||||
"make-error": "^1.1.1",
|
||||
"v8-compile-cache-lib": "^3.0.1",
|
||||
"yn": "3.1.1"
|
||||
},
|
||||
"bin": {
|
||||
"ts-node": "dist/bin.js",
|
||||
"ts-node-cwd": "dist/bin-cwd.js",
|
||||
"ts-node-esm": "dist/bin-esm.js",
|
||||
"ts-node-script": "dist/bin-script.js",
|
||||
"ts-node-transpile-only": "dist/bin-transpile.js",
|
||||
"ts-script": "dist/bin-script-deprecated.js"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@swc/core": ">=1.2.50",
|
||||
"@swc/wasm": ">=1.2.50",
|
||||
"@types/node": "*",
|
||||
"typescript": ">=2.7"
|
||||
},
|
||||
"peerDependenciesMeta": {
|
||||
"@swc/core": {
|
||||
"optional": true
|
||||
},
|
||||
"@swc/wasm": {
|
||||
"optional": true
|
||||
}
|
||||
}
|
||||
},
|
||||
"node_modules/typescript": {
|
||||
"version": "5.7.3",
|
||||
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz",
|
||||
"integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==",
|
||||
"dev": true,
|
||||
"peer": true,
|
||||
"bin": {
|
||||
"tsc": "bin/tsc",
|
||||
"tsserver": "bin/tsserver"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=14.17"
|
||||
}
|
||||
},
|
||||
"node_modules/undici-types": {
|
||||
"version": "6.20.0",
|
||||
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
|
||||
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/v8-compile-cache-lib": {
|
||||
"version": "3.0.1",
|
||||
"resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz",
|
||||
"integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/yaml": {
|
||||
"version": "2.7.0",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz",
|
||||
"integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==",
|
||||
"bin": {
|
||||
"yaml": "bin.mjs"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 14"
|
||||
}
|
||||
},
|
||||
"node_modules/yn": {
|
||||
"version": "3.1.1",
|
||||
"resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz",
|
||||
"integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==",
|
||||
"dev": true,
|
||||
"engines": {
|
||||
"node": ">=6"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
15
scripts/package.json
Normal file
15
scripts/package.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "scripts",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"generate-example-config": "ts-node generate-example-config.ts"
|
||||
},
|
||||
"description": "",
|
||||
"dependencies": {
|
||||
"yaml": "^2.7.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.13.5",
|
||||
"ts-node": "^10.9.2"
|
||||
}
|
||||
}
|
||||
8
scripts/tsconfig.json
Normal file
8
scripts/tsconfig.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"esModuleInterop": true,
|
||||
"moduleResolution": "node"
|
||||
},
|
||||
"include": ["/**/*.ts", "generate-example-config.ts"],
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
Reference in New Issue
Block a user