commit 917463e75e6a30bc6276abb1102b342a099765db
Author: admin
Date: Sun May 11 16:05:18 2025 -0600
Fresh start without sensitive data
diff --git a/.env b/.env
new file mode 100644
index 0000000..05e7536
--- /dev/null
+++ b/.env
@@ -0,0 +1,113 @@
+# Never share this file publicly. It contains sensitive information.
+# This file is used to configure various applications and services.
+# Generated by Changemaker Config Wizard on Thu 08 May 2025 03:22:28 PM MDT
+
+# Domain Configuration
+DOMAIN=test.com
+BASE_DOMAIN=https://test.com
+
+# Listmonk Configuration
+LISTMONK_ADMIN_USER=admin
+LISTMONK_ADMIN_PASSWORD=strongpassword
+LISTMONK_PORT=9000
+LISTMONK_HOSTNAME=listmonk.test.com
+
+# Database Credentials
+POSTGRES_USER=listmonk
+POSTGRES_PASSWORD=7Cl6OUA6KrJ1fQ0l/ZwJ
+POSTGRES_DB=listmonk
+
+# Monica CRM Configuration
+MONICA_APP_KEY=base64:NUdzZlhaOVR5M0FEd0JNZGhEcUFZbDBFdmlHbEhUYzc=
+MONICA_DB_USERNAME=monica
+MONICA_DB_PASSWORD=s6ikjtkdmk3HQnTX58tO
+MONICA_MYSQL_DATABASE=monica
+MONICA_MYSQL_USER=monica
+MONICA_MYSQL_PASSWORD=s6ikjtkdmk3HQnTX58tO
+
+# MkDocs Configuration
+USER_ID=1000
+GROUP_ID=1000
+MKDOCS_PORT=4000
+
+# Flatnotes Configuration
+FLATNOTES_PUID=1000
+FLATNOTES_PGID=1000
+FLATNOTES_AUTH_TYPE=password
+FLATNOTES_USERNAME=user
+FLATNOTES_PASSWORD=changeMe!
+FLATNOTES_SECRET_KEY=S1SfMQwbkxvYC+SIAJkf4v6fJ0DJWJrU
+FLATNOTES_PORT=8089
+
+# Gitea Configuration
+GITEA_DB_TYPE=mysql
+GITEA_DB_HOST=gitea-db:3306
+GITEA_DB_NAME=gitea
+GITEA_DB_USER=gitea
+GITEA_DB_PASSWD=0OmqfwcnPCWbsNbg8upAQ7Zh
+GITEA_DB_ROOT_PASSWORD=Ygl6RyjoJbNwOd2p9yiVc3+2
+GITEA_WEB_PORT=3030
+GITEA_SSH_PORT=2225
+GITEA_ROOT_URL=https://gitea.test.com
+GITEA_DOMAIN=gitea.test.com
+
+# Apache Answer Configuration
+ANSWER_APP_PORT=9080
+
+# Excalidraw Configuration
+EXCALIDRAW_PORT=3333
+EXCALIDRAW_LIBRARY_URL=https://libraries.excalidraw.com
+EXCALIDRAW_LIBRARY_BACKEND=https://us-central1-excalidraw-room-persistence.cloudfunctions.net/libraries # do not alter this URL
+EXCALIDRAW_PUBLIC_URL=https://excalidraw.test.com
+EXCALIDRAW_PUBLIC_SOCKET_URL=https://excalidraw.test.com
+
+# Code Server Configuration
+CODE_SERVER_PORT=8888
+USER_NAME=coder
+
+# Cloudflare Credentials
+CF_AUTH_EMAIL=[insert]
+CF_API_TOKEN=[insert]
+CF_ZONE_ID=[insert]
+CF_TUNNEL_ID=[insert]
+CF_DOMAIN=[insert]
+
+# NocoDB Configuration
+NOCODB_PORT=8090
+NOCODB_JWT_SECRET=QUwWUpyZ/XjPm9sBhjkwI5X3XANFzigW
+NOCODB_DB_NAME=nocodb
+NOCODB_DB_USER=noco
+NOCODB_DB_PASSWORD=qKd+v98CPRViaOHHV+ZJ
+
+# OpenWebUI Configuration
+OPEN_WEBUI_PORT=3005
+OPEN_WEBUI_URL=https://open-webui.test.com
+
+# N8N Configuration
+N8N_PORT=5678
+N8N_HOST=n8n.test.com
+N8N_ENCRYPTION_KEY=PRp6GXqr+ShtN/SEJHTKuOifEBLcaruC
+N8N_USER_EMAIL=admin@example.com
+N8N_USER_PASSWORD=changeMe
+GENERIC_TIMEZONE=UTC
+
+# ConvertX Configuration
+CONVERTX_PORT=3100
+CONVERTX_JWT_SECRET=d71go1i0k1ytW37z+ongq78HlwsVdS1sqdGoxSBux3WxvH1f
+
+# Rocket.Chat Configuration
+ROCKETCHAT_IMAGE=registry.rocket.chat/rocketchat/rocket.chat
+ROCKETCHAT_RELEASE=latest
+ROCKETCHAT_PORT=3004
+ROCKETCHAT_CONTAINER_PORT=3000
+ROCKETCHAT_ROOT_URL=https://rocket.test.com
+ROCKETCHAT_DEPLOYMENT_ENVIRONMENT=production
+ROCKETCHAT_MONGODB_VERSION=6.0
+ROCKETCHAT_MONGODB_HOST=mongodb-rocketchat
+ROCKETCHAT_MONGODB_PORT=27017
+ROCKETCHAT_MONGODB_DATABASE=rocketchat
+ROCKETCHAT_MONGODB_REPLICA_SET=rs0
+ROCKETCHAT_MONGODB_ENABLE_JOURNAL=true
+ROCKETCHAT_MONGODB_ALLOW_EMPTY_PASSWORD=yes
+
+# Additional Configuration
diff --git a/.gitignore b/.gitignore
new file mode 100755
index 0000000..b66dbac
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,41 @@
+# Ignore all files in specific directories but keep .gitkeep files
+
+# code-server directories
+configs/code-server/.config/code-server/*
+!configs/code-server/.config/code-server/.gitkeep
+
+configs/code-server/.local/*
+!configs/code-server/.local/.gitkeep
+
+# ferdium directory
+configs/ferdium/*
+!configs/ferdium/.gitkeep
+
+# flatnotes directory
+mkdocs/docs/blog/posts/.flatnotes/*
+!mkdocs/docs/blog/posts/.flatnotes/.gitkeep
+
+# attachments directory
+mkdocs/docs/blog/posts/attachments/*
+!mkdocs/docs/blog/posts/attachments/.gitkeep
+
+# data directory
+data/*
+!data/.gitkeep
+
+# local-files
+local-files/*
+!local-files/.gitkeep
+
+# Convertx
+convertx-data/*
+!convertx-data/.gitkeep
+
+# Env Backups
+.env.backup*
+
+# answers data
+answer-data/*
+!answer-data/.gitkeep
+
+.vscode
diff --git a/Dockerfile.code-server b/Dockerfile.code-server
new file mode 100644
index 0000000..b922a07
--- /dev/null
+++ b/Dockerfile.code-server
@@ -0,0 +1,84 @@
+FROM codercom/code-server:latest
+
+USER root
+
+# Install Python and dependencies
+RUN apt-get update && apt-get install -y \
+ python3 \
+ python3-pip \
+ python3-venv \
+ python3-full \
+ pipx \
+ # Dependencies for CairoSVG and Pillow (PIL)
+ libcairo2-dev \
+ libfreetype6-dev \
+ libffi-dev \
+ libjpeg-dev \
+ libpng-dev \
+ libz-dev \
+ python3-dev \
+ pkg-config \
+ # Additional dependencies for advanced image processing
+ libwebp-dev \
+ libtiff5-dev \
+ libopenjp2-7-dev \
+ liblcms2-dev \
+ libxml2-dev \
+ libxslt1-dev \
+ # PDF generation dependencies
+ weasyprint \
+ fonts-roboto \
+ # Git for git-based plugins
+ git \
+ # For lxml
+ zlib1g-dev \
+ # Required for some plugins
+ build-essential \
+ && apt-get clean \
+ && rm -rf /var/lib/apt/lists/*
+
+# Switch to non-root user (coder)
+USER coder
+
+# Set up a virtual environment for mkdocs
+RUN mkdir -p /home/coder/.venv
+RUN python3 -m venv /home/coder/.venv/mkdocs
+
+# Install mkdocs-material in the virtual environment with all extras
+RUN /home/coder/.venv/mkdocs/bin/pip install "mkdocs-material[imaging,recommended,git]"
+
+# Install additional useful MkDocs plugins
+RUN /home/coder/.venv/mkdocs/bin/pip install \
+ mkdocs-minify-plugin \
+ mkdocs-git-revision-date-localized-plugin \
+ mkdocs-glightbox \
+ mkdocs-redirects \
+ mkdocs-awesome-pages-plugin \
+ mkdocs-blog-plugin \
+ mkdocs-rss-plugin \
+ mkdocs-meta-descriptions-plugin \
+ mkdocs-swagger-ui-tag \
+ mkdocs-macros-plugin \
+ mkdocs-material-extensions \
+ mkdocs-section-index \
+ mkdocs-table-reader-plugin \
+ mkdocs-pdf-export-plugin \
+ mkdocs-mermaid2-plugin \
+ pymdown-extensions \
+ pygments \
+ pillow \
+ cairosvg
+
+# Add the virtual environment bin to PATH
+ENV PATH="/home/coder/.venv/mkdocs/bin:${PATH}"
+
+# Add shell configuration to activate the virtual environment in .bashrc
+RUN echo 'export PATH="/home/coder/.venv/mkdocs/bin:$PATH"' >> ~/.bashrc
+RUN echo 'export PATH="/home/coder/.local/bin:$PATH"' >> ~/.bashrc
+
+# Create a convenience script to simplify running mkdocs commands
+RUN mkdir -p /home/coder/.local/bin \
+ && echo '#!/bin/bash\ncd /home/coder/mkdocs\nmkdocs "$@"' > /home/coder/.local/bin/run-mkdocs \
+ && chmod +x /home/coder/.local/bin/run-mkdocs
+
+WORKDIR /home/coder
diff --git a/README.md b/README.md
new file mode 100755
index 0000000..126c5f3
--- /dev/null
+++ b/README.md
@@ -0,0 +1,347 @@
+# Changemaker V5
+
+
+
+Changemaker V5 is a battle-tested, lightweight, self-hosted productivity suite which empowers you to deploy secure, locally-built websites, blogs, newsletters, & forms – from personal projects to full-fledged campaigns – granting you complete control, inherent security, and true freedom of speech.
+
+It is a project undertaken by The Bunker Operations, headquarted in Edmonton, Alberta, Canada, as to provide our community a digital campaign alternative to mainstream American systems.
+
+---
+## Currated Suite of Applications
+
+---
+
+## Contents
+- [Prerequisites](#prerequisites)
+- [Quick Start](#quick-start)
+- [Detailed Installation](#detailed-installation)
+ - [1. Install Docker and Docker Compose](#1-install-docker-and-docker-compose)
+ - [2. Clone the Repository](#2-clone-the-repository)
+ - [3. Configure Your Environment](#3-configure-your-environment)
+ - [4. Start the Services](#4-start-the-services)
+ - [5. Run Post-Installation Tasks](#5-run-post-installation-tasks)
+- [Local Service Ports](#local-service-ports)
+- [Cloudflare Tunnel Setup](#cloudflare-tunnel-setup)
+ - [Install Cloudflared on Ubuntu 24.04](#install-cloudflared-on-ubuntu-2404)
+ - [Configure Your Cloudflare Tunnel](#configure-your-cloudflare-tunnel)
+ - [Create a Cloudflare System Service](#create-a-cloudflare-system-service)
+ - [Add CNAME Records](#add-cname-records)
+- [Website Build and Deployment Workflow](#website-build-and-deployment-workflow)
+- [Reset Your Installation](#reset-your-installation)
+- [Accessing Your Services](#accessing-your-services)
+- [Troubleshooting](#troubleshooting)
+
+---
+## Development Pathway
+
+Changemaker's identified wants for development:
+- Internal integrations for assset management i.e. shared plain file locations
+- Database connections for automation systems i.e. manauls for Nocodb & n8n on connecting services
+- Manual & landing site for the whole system i.e. upgrading bnkops.com
+- Trainings and manuals across the board
+
+Idenitfied Feature Requests:
+- Event Management: Looking at [hi.ewvents](https://hi.events/)
+- Scheduling: Looking at [rally](https://rallly.co/)
+- Support and user chat: looking at [chatwoot](https://github.com/chatwoot/chatwoot)
+- Mass community chat: looking at [thelounge](https://thelounge.chat/)
+- Team chat and project management: looking at [rocket chat](https://github.com/RocketChat/Rocket.Chat) ✔️
+
+Bugs:
+- Readme needs a full flow redo - ✅ next up
+- Config script needs to be updated for nocodb for a simpler string / set the string - :white_check_mark:
+- Gitea DNS application access bypass not properly setting - ✅ bypass needing manual setup / need to explore api more
+- Portainer not serving to http - 🤔 portainer to be limited to local access
+- nocodb setup upping odd - ✅ password needs no special characters
+- ferdium port mismatch - ✅ was a cloudflare port setting missmatch
+
+## Prerequisites
+
+- A Linux server (Ubuntu 22.04/24.04 recommended)
+- Docker & Docker Compose
+- Internet connection
+- (Optional) Root or sudo access
+- (Optional) A domain name for remote access
+- (Optional) Cloudflare account for tunnel setup
+
+## Quick Start for Local Dev
+
+Review all off the applications [here](/apps.md)
+
+If you're familiar with Docker and want to get started quickly:
+
+```bash
+# Clone the repository
+git clone https://gitea.bnkhome.org/bnkops/Changemaker.git
+cd changemaker
+```
+
+```bash
+# Use default configuration for development or run the config script for configuration
+# To optionally configure, first make the script executable:
+chmod +x config.sh
+
+# Then run the configuration script:
+./config.sh
+```
+
+```
+# Start all services
+docker compose up -d
+```
+
+**[!Warning] Configure Portainer & Install Gitea**
+
+Portainer has a timed build process. Make sure to immediatly configure the service by visiting https://localhost:9444
+
+Gitea has a install process that you should complete on first build.
+
+**First time installation can take several miniutes**
+
+On a 1GB internet connection, instal time is approximately 3 minutes.
+
+## Local Service Ports
+
+When running Changemaker locally, you can access the services at the following ports on your server:
+
+| Service | Local Port | Local URL |
+|--------------|------------|------------------------------------------|
+| Root (Nginx) | 4001 | [http://localhost:4001](http://localhost:4001) |
+| Homepage | 3010 | [http://localhost:3010](http://localhost:3010) |
+| Excalidraw | 3333 | [http://localhost:3333](http://localhost:3333) |
+| Listmonk | 9000 | [http://localhost:9000](http://localhost:9000) |
+| Monica CRM | 8085 | [http://localhost:8085](http://localhost:8085) |
+| MkDocs | 4000 | [http://localhost:4000](http://localhost:4000) |
+| Flatnotes | 8089 | [http://localhost:8089](http://localhost:8089) |
+| Code Server | 8888 | [http://localhost:8888](http://localhost:8888) |
+| Ollama | 11435 | [http://localhost:11435](http://localhost:11435) |
+| OpenWebUI | 3005 | [http://localhost:3005](http://localhost:3005) |
+| Gitea | 3030 | [http://localhost:3030](http://localhost:3030) |
+| Portainer | 8005 | [http://localhost:8005](http://localhost:8005) |
+| Mini QR | 8081 | [http://localhost:8081](http://localhost:8081) |
+| Ferdium | 3006 | [http://localhost:3006](http://localhost:3006) |
+| Answer | 9080 | [http://localhost:9080](http://localhost:9080) |
+| NocoDB | 8090 | [http://localhost:8090](http://localhost:8090) |
+| n8n | 5678 | [https://localhost:5678](https://localhost:5678) |
+| ConvertX | 3100 | [http://localhost:3100](http://localhost:3100) |
+| Rocket.Chat | 3004 | [http://localhost:3004](http://localhost:3004) |
+
+## Detailed Installation
+
+### Ubuntu OS & Build Outs
+
+You can deploy Changemaker on any OS using Docker however we also provide several full Ubuntu build-outs. These scripts can speed up your deployment immensely and Changemaker is developed on a like system:
+
+1. **[build.server](https://gitea.bnkhome.org/bnkops/scripts/src/branch/main/build.server.md)** - this build-out is a lightweight deployment aimed for dedicated server machines. It is focused on entry level users who would build on a dedicated machine.
+2. **[build.homelab](https://gitea.bnkhome.org/bnkops/scripts/src/branch/main/build.homelab.md)** - this build-out is full-some development focused build-out that The Bunker Operations uses for our day-to-day operations.
+
+Configuration and services scripts for futher developing the system can be found at the [scripts](https://gitea.bnkhome.org/bnkops/scripts) repo.
+
+### 1. Install Docker and Docker Compose
+
+Install Docker and Docker Compose on your system if they're not already installed:
+
+[Install Docker & Docker Compose](https://gitea.bnkhome.org/bnkops/scripts/src/branch/main/build.homelab.md#dockerhttpswwwdockercom)
+
+Verify that Docker and Docker Compose are installed correctly:
+
+```bash
+docker --version
+docker compose version
+```
+
+### 2. Clone the Repository
+
+```bash
+git clone https://github.com/your-org/changemaker-v5.git
+cd changemaker-v5
+```
+
+### 2. Configure Your Environment
+
+#### Setting Up Cloudflare Credentials
+
+To use the script, you'll need to collect several Cloudflare variables:
+
+1. **Create an API Token with appropriate permissions**:
+ - Go to your [Cloudflare Dashboard](https://dash.cloudflare.com/) → Profile → API Tokens
+ - Click "Create Token"
+ - Either use the "Edit zone DNS" template or create a custom token with:
+ - Zone:DNS:Edit permissions
+ - Access:Apps:Edit permissions
+ - Restrict the token to only your specific zone/domain
+ - Generate and copy the token
+
+2. **Get your Zone ID**:
+ - Go to your domain's overview page in the Cloudflare dashboard
+ - The Zone ID is displayed on the right sidebar
+ - It looks like: `023e105f4ecef8ad9ca31a8372d0c353`
+
+3. **Get your Tunnel ID**:
+ - You should have noted your tunnel id in your tunnel creation or you can find it through cloudflare or in your files:
+ - Go to Cloudflare Zero Trust dashboard → Access → Tunnels
+ - Click on your tunnel
+ - The Tunnel ID is in the URL: `https://dash.teams.cloudflare.com/xxx/network/tunnels/xxxx`
+ - It looks like: `6ff42ae2-765d-4adf-8112-31c55c1551ef`
+
+You have two options:
+
+**Option A: Use the configuration wizard (recommended)**
+```bash
+# Make the script executable
+chmod +x config.sh
+
+# Run the configuration wizard
+./config.sh
+```
+
+**Option B: Configure manually**
+```bash
+# Edit the .env file with your settings
+nano .env
+```
+
+### 4. Start the Services
+
+```bash
+# Pull and start all containers in detached mode
+docker compose up -d
+```
+
+ > [!Warning] Configure Portainer
+
+ Portainer has a timed build process. Make sure to immediatly configure the service at https://localhost:9444 following successful build.
+
+
+All services can now be accessed through on local machine. If deploying to public, it is recommended to **configure portainer** and then continue configuration for all other services once tunnel is established. Then use the public links for configuration of services. For online deployment with Cloudflare, continue to next steps.
+
+### 4. Cloudflare Tunnel Setup
+
+For secure remote access to your services, you can set up a Cloudflare Tunnel.
+
+### Install Cloudflared on Ubuntu 24.04
+
+[Cloudflared Installation Guide](https://gitea.bnkhome.org/bnkops/scripts/src/branch/main/build.homelab.md#cloudflaredhttpsdeveloperscloudflarecomcloudflare-oneconnectionsconnect-networks)
+
+### Configure Your Cloudflare Tunnel
+
+You can use our [Cloudflare Configuration Guide](https://gitea.bnkhome.org/bnkops/scripts/src/branch/main/config.cloudflare.homelab.md) however remember to copy the values of the [example config](/example.cloudflare.config.yml) for this deployment.
+
+### Create a Cloudflare System Service
+
+[Cloudflare Service Setup Guide](https://gitea.bnkhome.org/bnkops/scripts/src/branch/main/service.cloudflared.md)
+
+### Add CNAME Records
+
+After setting up your Cloudflare Tunnel, you need to add CNAME records for your services. You can do this manually in the Cloudflare DNS panel or with using the following script: `add-cname-records.sh`
+
+```bash
+# Make the script executable
+chmod +x add-cname-records.sh
+
+# Run the script to add CNAME records
+./add-cname-records.sh
+```
+
+This script will add CNAME records for all Changemaker services to your Cloudflare DNS.
+
+It will also set up a Cloudflare Access Application for all services execpt for your website and gitea. This is a extra layer of security that we do recommend for your deployment. It will automatically allow any emails with from the root domain that you set in the `config.sh` process. For example, if you set your root domain to `example.com` your access rule will allow emails ending with @example.com thorugh. You can update your access settings in the Cloudflare Zero Trust dashboard.
+
+> [!warning] Cloudflare Zero Trust
+ To ensure that system is secure, we highly recommend setting up some level of access control using Cloudflare Zero Trust. The `add-cname-records.sh` will do this automatically however the user is encouraged to familiarize themselves with Cloudflares Zero Trust access system.
+
+## Website Build and Deployment Workflow
+
+Changemaker uses MkDocs to create your website content, which is then served by an Nginx server. To update your website, you need to:
+
+1. **Edit your content** using either the Code Server or locally on your machine
+2. **Build the static site files**
+3. **Let the Nginx server (mkdocs-site-server) serve the built site**
+
+### Building Your Website
+
+You can build your website in two ways:
+
+#### Option 1: Using Code Server (recommended for remote deployments)
+1. Access Code Server at http://localhost:8888 or https://code-server.yourdomain.com
+2. Navigate to the mkdocs directory `/home/coder/mkdocs/`
+3. Open a terminal in Code Server
+4. Run the build command:
+ ```bash
+ cd /home/coder/mkdocs
+ mkdocs build
+ ```
+
+#### Option 2: Locally on your machine
+1. Navigate to the mkdocs directory in your project:
+ ```bash
+ cd /home/bunker-admin/Changemaker/mkdocs
+ ```
+2. Run the build command:
+ ```bash
+ mkdocs build
+ ```
+
+After building, the static site files will be generated in the `mkdocs/site` directory, which is automatically mounted to the Nginx server (mkdocs-site-server). Your website will be immediately available at:
+- Locally: http://localhost:4001
+- With Cloudflare: https://yourdomain.com
+
+### Development vs Production
+
+- During **development**, you can use the MkDocs live server at port 4000, which automatically rebuilds when you make changes
+- For **production**, build your site as described above and let the Nginx server at port 4001 serve the static files
+
+## Accessing Your Services
+
+The **Homepage** acts as a central dashboard for all your Changemaker services. You can access it at:
+
+- Locally: http://localhost:3010 or http://your-server-ip:3010
+- With Cloudflare: https://homepage.yourdomain.com
+
+The Homepage will display links to all your deployed services, making it easy to navigate your Changemaker ecosystem.
+
+After installation and cloudflare deployment you can also access individual services at the following URLs:
+
+- Website: https://yourdomain.com
+- Homepage: https://homepage.yourdomain.com
+- Excalidraw: https://excalidraw.yourdomain.com
+- Listmonk: https://listmonk.yourdomain.com
+- Monica CRM: https://monica.yourdomain.com
+- MkDocs: https://yourdomain.com
+- Flatnotes: https://flatnotes.yourdomain.com
+- Code Server: https://code-server.yourdomain.com
+- Ollama: https://ollama.yourdomain.com
+- OpenWebUI: https://open-web-ui.yourdomain.com
+- Gitea: https://gitea.yourdomain.com
+- Portainer: https://portainer.yourdomain.com
+- Mini QR: https://mini-qr.yourdomain.com
+- Ferdium: https://ferdium.yourdomain.com
+- Answer: https://answer.yourdomain.com
+- NocoDB: https://nocodb.yourdomain.com
+- n8n: https://n8n.yourdomain.com
+- ConvertX: https://convertx.yourdomain.com
+- Rocket.Chat: https://rocket.yourdomain.com
+
+## Troubleshooting
+
+If you encounter issues:
+
+1. Check the Docker logs:
+ ```bash
+ docker compose logs
+ ```
+
+2. Verify service status:
+ ```bash
+ docker compose ps
+ ```
+
+3. Ensure your Cloudflare Tunnel is running:
+ ```bash
+ sudo systemctl status cloudflared
+ ```
+
+4. Check CNAME records in your Cloudflare dashboard.
+
+
+For additional help, please file an issue on our GitHub repository.
\ No newline at end of file
diff --git a/add-cname-records.sh b/add-cname-records.sh
new file mode 100755
index 0000000..dc5f105
--- /dev/null
+++ b/add-cname-records.sh
@@ -0,0 +1,238 @@
+#!/bin/bash
+echo "#############################################################"
+echo "# "
+echo "# WARNING: This script will REPLACE ALL DNS records at "
+echo "# the target domain ($CF_DOMAIN)! "
+echo "# "
+echo "# All existing DNS records for the listed subdomains will "
+echo "# be deleted and replaced with new CNAME records. "
+echo "# "
+echo "#############################################################"
+echo ""
+echo "-------------------------------------------------------------"
+echo "Cloudflare Credentials Required"
+echo "Please ensure your .env file contains the following variables:"
+echo " CF_API_TOKEN=your_cloudflare_api_token"
+echo " CF_ZONE_ID=your_cloudflare_zone_id"
+echo " CF_TUNNEL_ID=your_cloudflared_tunnel_id"
+echo " CF_DOMAIN=yourdomain.com"
+echo ""
+echo "You can find these values in your Cloudflare dashboard:"
+echo " - API Token: https://dash.cloudflare.com/profile/api-tokens (Create a token with Zone:DNS:Edit and Access:Apps:Edit permissions for your domain)"
+echo " - Zone ID: On your domain's overview page"
+echo " - Tunnel ID: In the Zero Trust dashboard under Access > Tunnels"
+echo " - Domain: The domain you want to use for your services"
+echo ""
+echo "-------------------------------------------------------------"
+echo ""
+read -p "Type 'y' to continue or any other key to abort: " consent
+if [[ "$consent" != "y" && "$consent" != "Y" ]]; then
+ echo "Aborted by user."
+ exit 1
+fi
+# Source environment variables from the .env file in the same directory
+ENV_FILE="$(dirname "$0")/.env"
+if [ -f "$ENV_FILE" ]; then
+ export $(grep -v '^#' "$ENV_FILE" | xargs)
+else
+ echo "Error: .env file not found at $ENV_FILE"
+ exit 1
+fi
+
+# Check if required Cloudflare variables are set
+if [ -z "$CF_API_TOKEN" ] || [ -z "$CF_ZONE_ID" ] || [ -z "$CF_TUNNEL_ID" ] || [ -z "$CF_DOMAIN" ]; then
+ echo "Error: One or more required Cloudflare environment variables (CF_API_TOKEN, CF_ZONE_ID, CF_TUNNEL_ID, CF_DOMAIN) are not set in $ENV_FILE."
+ exit 1
+fi
+
+# Check if jq is installed
+if ! command -v jq &> /dev/null; then
+ echo "Error: jq is required but not installed. Please install jq to continue."
+ echo "On Debian/Ubuntu: sudo apt-get install jq"
+ echo "On RHEL/CentOS: sudo yum install jq"
+ exit 1
+fi
+
+# Array of subdomains based on docker-compose.yml services
+SUBDOMAINS=(
+ "homepage"
+ "excalidraw"
+ "listmonk"
+ "monica"
+ "flatnotes"
+ "code-server"
+ "ollama"
+ "open-webui"
+ "gitea"
+ "mini-qr"
+ "ferdium"
+ "answer"
+ "nocodb"
+ "n8n"
+ "convertx"
+ "rocket"
+ "live"
+)
+
+# First, remove existing DNS records for these subdomains
+echo "Removing existing DNS records..."
+
+for subdomain in "${SUBDOMAINS[@]}"; do
+ echo "Checking for existing records for $subdomain.$CF_DOMAIN..."
+
+ # Get all DNS records for this subdomain
+ RECORDS=$(curl -s -X GET "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/dns_records?name=$subdomain.$CF_DOMAIN" \
+ -H "Authorization: Bearer $CF_API_TOKEN" \
+ -H "Content-Type: application/json")
+
+ # Extract record IDs
+ RECORD_IDS=$(echo $RECORDS | jq -r '.result[].id')
+
+ # Delete each record
+ for record_id in $RECORD_IDS; do
+ echo "Deleting record $record_id for $subdomain.$CF_DOMAIN..."
+
+ curl -s -X DELETE "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/dns_records/$record_id" \
+ -H "Authorization: Bearer $CF_API_TOKEN" \
+ -H "Content-Type: application/json"
+ done
+done
+
+echo "All existing records have been removed."
+
+# Add CNAME records for each subdomain
+for subdomain in "${SUBDOMAINS[@]}"; do
+ echo "Adding CNAME record for $subdomain.$CF_DOMAIN..."
+
+ curl -X POST "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/dns_records" \
+ -H "Authorization: Bearer $CF_API_TOKEN" \
+ -H "Content-Type: application/json" \
+ --data "{
+ \"type\": \"CNAME\",
+ \"name\": \"$subdomain\",
+ \"content\": \"$CF_TUNNEL_ID.cfargotunnel.com\",
+ \"ttl\": 1,
+ \"proxied\": true
+ }"
+
+ echo -e "\n"
+done
+
+echo "All CNAME records have been added."
+
+# Add root domain record
+echo "Adding root domain (@ record)..."
+curl -X POST "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/dns_records" \
+ -H "Authorization: Bearer $CF_API_TOKEN" \
+ -H "Content-Type: application/json" \
+ --data "{
+ \"type\": \"CNAME\",
+ \"name\": \"@\",
+ \"content\": \"$CF_TUNNEL_ID.cfargotunnel.com\",
+ \"ttl\": 1,
+ \"proxied\": true
+ }"
+echo -e "\n"
+echo "Root domain CNAME record has been added."
+
+# Now create the Cloudflare Access applications
+echo "Creating Cloudflare Access applications..."
+
+# 1. Create wildcard access application for all subdomains
+echo "Creating wildcard access application for *.$CF_DOMAIN..."
+WILDCARD_APP_RESPONSE=$(curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/access/apps" \
+ -H "Authorization: Bearer $CF_API_TOKEN" \
+ -H "Content-Type: application/json" \
+ --data "{
+ \"name\": \"All Applications - $CF_DOMAIN\",
+ \"domain\": \"*.$CF_DOMAIN\",
+ \"type\": \"self_hosted\",
+ \"session_duration\": \"24h\",
+ \"app_launcher_visible\": true,
+ \"skip_interstitial\": true
+ }")
+
+# Extract the application ID from the response
+WILDCARD_APP_ID=$(echo $WILDCARD_APP_RESPONSE | jq -r '.result.id')
+
+if [ -z "$WILDCARD_APP_ID" ] || [ "$WILDCARD_APP_ID" == "null" ]; then
+ echo "Error creating wildcard access application. Response: $WILDCARD_APP_RESPONSE"
+else
+ echo "Successfully created wildcard access application with ID: $WILDCARD_APP_ID"
+
+ # Create policy for emails ending with the domain
+ echo "Creating email domain policy for wildcard application..."
+ EMAIL_DOMAIN=$(echo $CF_DOMAIN | cut -d'.' -f1,2)
+
+ curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/access/apps/$WILDCARD_APP_ID/policies" \
+ -H "Authorization: Bearer $CF_API_TOKEN" \
+ -H "Content-Type: application/json" \
+ --data "{
+ \"name\": \"Allow Domain Emails\",
+ \"decision\": \"allow\",
+ \"include\": [{
+ \"email_domain\": {
+ \"domain\": \"$EMAIL_DOMAIN\"
+ }
+ }],
+ \"require\": [],
+ \"exclude\": [],
+ \"precedence\": 1,
+ \"purpose\": \"Authentication for domain users\",
+ \"session_duration\": \"24h\"
+ }"
+
+ echo "Email domain policy created."
+fi
+
+# 2. Create specific access application for Gitea
+echo "Creating access application for gitea.$CF_DOMAIN..."
+GITEA_APP_RESPONSE=$(curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/access/apps" \
+ -H "Authorization: Bearer $CF_API_TOKEN" \
+ -H "Content-Type: application/json" \
+ --data "{
+ \"name\": \"Gitea $CF_DOMAIN\",
+ \"domain\": \"gitea.$CF_DOMAIN\",
+ \"type\": \"self_hosted\",
+ \"app_launcher_visible\": true,
+ \"skip_interstitial\": true
+ }")
+
+# Extract the application ID from the response
+GITEA_APP_ID=$(echo $GITEA_APP_RESPONSE | jq -r '.result.id')
+
+if [ -z "$GITEA_APP_ID" ] || [ "$GITEA_APP_ID" == "null" ]; then
+ echo "Error creating Gitea access application. Response: $GITEA_APP_RESPONSE"
+else
+ echo "Successfully created Gitea access application with ID: $GITEA_APP_ID"
+
+ # Create bypass policy for everyone - Updated format
+ echo "Creating bypass policy for Gitea application..."
+
+ POLICY_RESPONSE=$(curl -s -X POST "https://api.cloudflare.com/client/v4/zones/$CF_ZONE_ID/access/apps/$GITEA_APP_ID/policies" \
+ -H "Authorization: Bearer $CF_API_TOKEN" \
+ -H "Content-Type: application/json" \
+ --data "{
+ \"name\": \"Bypass for Everyone\",
+ \"decision\": \"bypass\",
+ \"include\": [{
+ \"everyone\": {}
+ }],
+ \"require\": [],
+ \"exclude\": []
+ }")
+
+ # Check if policy creation was successful
+ POLICY_SUCCESS=$(echo $POLICY_RESPONSE | jq -r '.success')
+
+ if [ "$POLICY_SUCCESS" == "true" ]; then
+ POLICY_ID=$(echo $POLICY_RESPONSE | jq -r '.result.id')
+ echo "Bypass policy for Gitea created successfully with ID: $POLICY_ID"
+ else
+ ERROR_MSG=$(echo $POLICY_RESPONSE | jq -r '.errors[0].message')
+ echo "Error creating bypass policy for Gitea: $ERROR_MSG"
+ echo "Full response: $POLICY_RESPONSE"
+ fi
+fi
+
+echo "Cloudflare Access applications setup complete."
diff --git a/answer-data/.gitkeep b/answer-data/.gitkeep
new file mode 100644
index 0000000..e69de29
diff --git a/answer-data/i18n/af_ZA.yaml b/answer-data/i18n/af_ZA.yaml
new file mode 100644
index 0000000..0d1cf1c
--- /dev/null
+++ b/answer-data/i18n/af_ZA.yaml
@@ -0,0 +1,1384 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+#The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: Success.
+ unknown:
+ other: Unknown error.
+ request_format_error:
+ other: Request format is not valid.
+ unauthorized_error:
+ other: Unauthorized.
+ database_error:
+ other: Data server error.
+ role:
+ name:
+ user:
+ other: User
+ admin:
+ other: Admin
+ moderator:
+ other: Moderator
+ description:
+ user:
+ other: Default with no special access.
+ admin:
+ other: Have the full power to access the site.
+ moderator:
+ other: Has access to all posts except admin settings.
+ email:
+ other: Email
+ password:
+ other: Password
+ email_or_password_wrong_error:
+ other: Email and password do not match.
+ error:
+ admin:
+ email_or_password_wrong:
+ other: Email and password do not match.
+ answer:
+ not_found:
+ other: Answer do not found.
+ cannot_deleted:
+ other: No permission to delete.
+ cannot_update:
+ other: No permission to update.
+ comment:
+ edit_without_permission:
+ other: Comment are not allowed to edit.
+ not_found:
+ other: Comment not found.
+ cannot_edit_after_deadline:
+ other: The comment time has been too long to modify.
+ email:
+ duplicate:
+ other: Email already exists.
+ need_to_be_verified:
+ other: Email should be verified.
+ verify_url_expired:
+ other: Email verified URL has expired, please resend the email.
+ lang:
+ not_found:
+ other: Language file not found.
+ object:
+ captcha_verification_failed:
+ other: Captcha wrong.
+ disallow_follow:
+ other: You are not allowed to follow.
+ disallow_vote:
+ other: You are not allowed to vote.
+ disallow_vote_your_self:
+ other: You can't vote for your own post.
+ not_found:
+ other: Object not found.
+ verification_failed:
+ other: Verification failed.
+ email_or_password_incorrect:
+ other: Email and password do not match.
+ old_password_verification_failed:
+ other: The old password verification failed
+ new_password_same_as_previous_setting:
+ other: The new password is the same as the previous one.
+ question:
+ not_found:
+ other: Question not found.
+ cannot_deleted:
+ other: No permission to delete.
+ cannot_close:
+ other: No permission to close.
+ cannot_update:
+ other: No permission to update.
+ rank:
+ fail_to_meet_the_condition:
+ other: Rank fail to meet the condition.
+ report:
+ handle_failed:
+ other: Report handle failed.
+ not_found:
+ other: Report not found.
+ tag:
+ not_found:
+ other: Tag not found.
+ recommend_tag_not_found:
+ other: Recommend Tag is not exist.
+ recommend_tag_enter:
+ other: Please enter at least one required tag.
+ not_contain_synonym_tags:
+ other: Should not contain synonym tags.
+ cannot_update:
+ other: No permission to update.
+ cannot_set_synonym_as_itself:
+ other: You cannot set the synonym of the current tag as itself.
+ smtp:
+ config_from_name_cannot_be_email:
+ other: The From Name cannot be a email address.
+ theme:
+ not_found:
+ other: Theme not found.
+ revision:
+ review_underway:
+ other: Can't edit currently, there is a version in the review queue.
+ no_permission:
+ other: No permission to Revision.
+ user:
+ email_or_password_wrong:
+ other:
+ other: Email and password do not match.
+ not_found:
+ other: User not found.
+ suspended:
+ other: User has been suspended.
+ username_invalid:
+ other: Username is invalid.
+ username_duplicate:
+ other: Username is already in use.
+ set_avatar:
+ other: Avatar set failed.
+ cannot_update_your_role:
+ other: You cannot modify your role.
+ not_allowed_registration:
+ other: Currently the site is not open for registration
+ config:
+ read_config_failed:
+ other: Read config failed
+ database:
+ connection_failed:
+ other: Database connection failed
+ create_table_failed:
+ other: Create table failed
+ install:
+ create_config_failed:
+ other: Can't create the config.yaml file.
+ upload:
+ unsupported_file_format:
+ other: Unsupported file format.
+ report:
+ spam:
+ name:
+ other: spam
+ desc:
+ other: This post is an advertisement, or vandalism. It is not useful or relevant to the current topic.
+ rude:
+ name:
+ other: rude or abusive
+ desc:
+ other: A reasonable person would find this content inappropriate for respectful discourse.
+ duplicate:
+ name:
+ other: a duplicate
+ desc:
+ other: This question has been asked before and already has an answer.
+ not_answer:
+ name:
+ other: not an answer
+ desc:
+ other: This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether.
+ not_need:
+ name:
+ other: no longer needed
+ desc:
+ other: This comment is outdated, conversational or not relevant to this post.
+ other:
+ name:
+ other: something else
+ desc:
+ other: This post requires staff attention for another reason not listed above.
+ question:
+ close:
+ duplicate:
+ name:
+ other: spam
+ desc:
+ other: This question has been asked before and already has an answer.
+ guideline:
+ name:
+ other: a community-specific reason
+ desc:
+ other: This question doesn't meet a community guideline.
+ multiple:
+ name:
+ other: needs details or clarity
+ desc:
+ other: This question currently includes multiple questions in one. It should focus on one problem only.
+ other:
+ name:
+ other: something else
+ desc:
+ other: This post requires another reason not listed above.
+ operation_type:
+ asked:
+ other: asked
+ answered:
+ other: answered
+ modified:
+ other: modified
+ notification:
+ action:
+ update_question:
+ other: updated question
+ answer_the_question:
+ other: answered question
+ update_answer:
+ other: updated answer
+ accept_answer:
+ other: accepted answer
+ comment_question:
+ other: commented question
+ comment_answer:
+ other: commented answer
+ reply_to_you:
+ other: replied to you
+ mention_you:
+ other: mentioned you
+ your_question_is_closed:
+ other: Your question has been closed
+ your_question_was_deleted:
+ other: Your question has been deleted
+ your_answer_was_deleted:
+ other: Your answer has been deleted
+ your_comment_was_deleted:
+ other: Your comment has been deleted
+#The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ all_read: Mark all as read
+ show_more: Show more
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language (optional)
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal Rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image File
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed 4 MB.
+ desc:
+ label: Description (optional)
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered List
+ unordered_list:
+ text: Bulleted List
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL Slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ content: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ characters: content must be at least 6 characters in length.
+ reopen:
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ success: This post has been reopened
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_question_deleted: This post has been deleted
+ tip_answer_deleted: This answer has been deleted
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ save: Save
+ delete: Delete
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ add_question: Add question
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post
+ modal_confirm:
+ title: Error...
+ account_result:
+ page_title: Welcome to {{site_name}}
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ invalid: >-
+ Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ newest: Newest
+ score: Score
+ edit_profile: Edit Profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ upvote: upvote
+ downvote: downvote
+ mod_short: Mod
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please Choose a Language
+ db_type:
+ label: Database Engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database Host
+ placeholder: "db:3306"
+ msg: Database Host cannot be empty.
+ db_name:
+ label: Database Name
+ placeholder: answer
+ msg: Database Name cannot be empty.
+ db_file:
+ label: Database File
+ placeholder: /data/answer.db
+ msg: Database File cannot be empty.
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: After you've done that, click "Next" button.
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site Name
+ msg: Site Name cannot be empty.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ contact_email:
+ label: Contact Email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact Email cannot be empty.
+ incorrect: Contact Email incorrect format.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ counts:
+ views: views
+ votes: votes
+ answers: answers
+ accepted: Accepted
+ page_404:
+ desc: "Unfortunately, this page doesn't exist."
+ back_home: Back to homepage
+ page_50X:
+ desc: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css-html: CSS/HTML
+ login: Login
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site Statistics
+ questions: "Questions:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ active_users: "Active users:"
+ flags: "Flags:"
+ site_health_status: Site Health Status
+ version: "Version:"
+ https: "HTTPS:"
+ uploading_files: "Uploading files:"
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System Info
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ answer_links: Answer Links
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ created: Created
+ action: Action
+ review: Review
+ change_modal:
+ title: Change user status to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ normal_name: normal
+ normal_desc: A normal user can ask and answer questions.
+ suspended_name: suspended
+ suspended_desc: A suspended user can't log in.
+ deleted_name: deleted
+ deleted_desc: "Delete profile, authentication associations."
+ inactive_name: inactive
+ inactive_desc: An inactive user must re-validate their email.
+ confirm_title: Delete this user
+ confirm_content: Are you sure you want to delete this user? This is permanent!
+ confirm_btn: Delete
+ msg:
+ empty: Please select a reason.
+ status_modal:
+ title: "Change {{ type }} status to..."
+ normal_name: normal
+ normal_desc: A normal post available to everyone.
+ closed_name: closed
+ closed_desc: "A closed question can't answer, but still can edit, vote and comment."
+ deleted_name: deleted
+ deleted_desc: All reputation gained and lost will be restored.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_next: Next
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg: Display name must be 2-30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ questions:
+ page_title: Questions
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ normal: Normal
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site Name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short Site Description (optional)
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site Description (optional)
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact Email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ interface:
+ page_title: Interface
+ logo:
+ label: Logo (optional)
+ msg: Site logo cannot be empty.
+ text: You can upload your image or <1>reset1> it to the site title text.
+ theme:
+ label: Theme
+ msg: Theme cannot be empty.
+ text: Select an existing theme.
+ language:
+ label: Interface Language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From Email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From Name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP Host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ none: None
+ smtp_port:
+ label: SMTP Port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP Username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP Password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test Email Recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP Authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo (optional)
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile Logo (optional)
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the "logo" setting will be used.
+ square_icon:
+ label: Square Icon (optional)
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon (optional)
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, "square icon" will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of Service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy Policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ write:
+ page_title: Write
+ recommend_tags:
+ label: Recommend Tags
+ text: "Please input tag slug above, one tag per line."
+ required_tag:
+ title: Required Tag
+ label: Set recommend tag as required
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved Tags
+ text: "Reserved tags can only be added to a post by moderator."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ navbar_style:
+ label: Navbar Style
+ text: Select an existing theme.
+ primary_color:
+ label: Primary Color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: This will insert as <link>
+ head:
+ label: Head
+ text: This will insert before </head>
+ header:
+ label: Header
+ text: This will insert after <body>
+ footer:
+ label: Footer
+ text: This will insert before </body>.
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ form:
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores
+ users_with_the_most_vote: Users who voted the most
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
diff --git a/answer-data/i18n/ar_SA.yaml b/answer-data/i18n/ar_SA.yaml
new file mode 100644
index 0000000..1f298b9
--- /dev/null
+++ b/answer-data/i18n/ar_SA.yaml
@@ -0,0 +1,1384 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+#The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: Success.
+ unknown:
+ other: Unknown error.
+ request_format_error:
+ other: Request format is not valid.
+ unauthorized_error:
+ other: Unauthorized.
+ database_error:
+ other: Data server error.
+ role:
+ name:
+ user:
+ other: User
+ admin:
+ other: Admin
+ moderator:
+ other: Moderator
+ description:
+ user:
+ other: Default with no special access.
+ admin:
+ other: Have the full power to access the site.
+ moderator:
+ other: Has access to all posts except admin settings.
+ email:
+ other: Email
+ password:
+ other: Password
+ email_or_password_wrong_error:
+ other: Email and password do not match.
+ error:
+ admin:
+ email_or_password_wrong:
+ other: Email and password do not match.
+ answer:
+ not_found:
+ other: Answer do not found.
+ cannot_deleted:
+ other: No permission to delete.
+ cannot_update:
+ other: No permission to update.
+ comment:
+ edit_without_permission:
+ other: Comment are not allowed to edit.
+ not_found:
+ other: Comment not found.
+ cannot_edit_after_deadline:
+ other: The comment time has been too long to modify.
+ email:
+ duplicate:
+ other: Email already exists.
+ need_to_be_verified:
+ other: Email should be verified.
+ verify_url_expired:
+ other: Email verified URL has expired, please resend the email.
+ lang:
+ not_found:
+ other: Language file not found.
+ object:
+ captcha_verification_failed:
+ other: Captcha wrong.
+ disallow_follow:
+ other: You are not allowed to follow.
+ disallow_vote:
+ other: You are not allowed to vote.
+ disallow_vote_your_self:
+ other: You can't vote for your own post.
+ not_found:
+ other: Object not found.
+ verification_failed:
+ other: Verification failed.
+ email_or_password_incorrect:
+ other: Email and password do not match.
+ old_password_verification_failed:
+ other: The old password verification failed
+ new_password_same_as_previous_setting:
+ other: The new password is the same as the previous one.
+ question:
+ not_found:
+ other: Question not found.
+ cannot_deleted:
+ other: No permission to delete.
+ cannot_close:
+ other: No permission to close.
+ cannot_update:
+ other: No permission to update.
+ rank:
+ fail_to_meet_the_condition:
+ other: Rank fail to meet the condition.
+ report:
+ handle_failed:
+ other: Report handle failed.
+ not_found:
+ other: Report not found.
+ tag:
+ not_found:
+ other: Tag not found.
+ recommend_tag_not_found:
+ other: Recommend Tag is not exist.
+ recommend_tag_enter:
+ other: Please enter at least one required tag.
+ not_contain_synonym_tags:
+ other: Should not contain synonym tags.
+ cannot_update:
+ other: No permission to update.
+ cannot_set_synonym_as_itself:
+ other: You cannot set the synonym of the current tag as itself.
+ smtp:
+ config_from_name_cannot_be_email:
+ other: The From Name cannot be a email address.
+ theme:
+ not_found:
+ other: Theme not found.
+ revision:
+ review_underway:
+ other: Can't edit currently, there is a version in the review queue.
+ no_permission:
+ other: No permission to Revision.
+ user:
+ email_or_password_wrong:
+ other:
+ other: Email and password do not match.
+ not_found:
+ other: User not found.
+ suspended:
+ other: User has been suspended.
+ username_invalid:
+ other: Username is invalid.
+ username_duplicate:
+ other: Username is already in use.
+ set_avatar:
+ other: Avatar set failed.
+ cannot_update_your_role:
+ other: You cannot modify your role.
+ not_allowed_registration:
+ other: Currently the site is not open for registration
+ config:
+ read_config_failed:
+ other: Read config failed
+ database:
+ connection_failed:
+ other: Database connection failed
+ create_table_failed:
+ other: Create table failed
+ install:
+ create_config_failed:
+ other: Can't create the config.yaml file.
+ upload:
+ unsupported_file_format:
+ other: Unsupported file format.
+ report:
+ spam:
+ name:
+ other: spam
+ desc:
+ other: This post is an advertisement, or vandalism. It is not useful or relevant to the current topic.
+ rude:
+ name:
+ other: rude or abusive
+ desc:
+ other: A reasonable person would find this content inappropriate for respectful discourse.
+ duplicate:
+ name:
+ other: a duplicate
+ desc:
+ other: This question has been asked before and already has an answer.
+ not_answer:
+ name:
+ other: not an answer
+ desc:
+ other: This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether.
+ not_need:
+ name:
+ other: no longer needed
+ desc:
+ other: This comment is outdated, conversational or not relevant to this post.
+ other:
+ name:
+ other: something else
+ desc:
+ other: This post requires staff attention for another reason not listed above.
+ question:
+ close:
+ duplicate:
+ name:
+ other: spam
+ desc:
+ other: This question has been asked before and already has an answer.
+ guideline:
+ name:
+ other: a community-specific reason
+ desc:
+ other: This question doesn't meet a community guideline.
+ multiple:
+ name:
+ other: needs details or clarity
+ desc:
+ other: This question currently includes multiple questions in one. It should focus on one problem only.
+ other:
+ name:
+ other: something else
+ desc:
+ other: This post requires another reason not listed above.
+ operation_type:
+ asked:
+ other: asked
+ answered:
+ other: answered
+ modified:
+ other: modified
+ notification:
+ action:
+ update_question:
+ other: updated question
+ answer_the_question:
+ other: answered question
+ update_answer:
+ other: updated answer
+ accept_answer:
+ other: accepted answer
+ comment_question:
+ other: commented question
+ comment_answer:
+ other: commented answer
+ reply_to_you:
+ other: replied to you
+ mention_you:
+ other: mentioned you
+ your_question_is_closed:
+ other: Your question has been closed
+ your_question_was_deleted:
+ other: Your question has been deleted
+ your_answer_was_deleted:
+ other: Your answer has been deleted
+ your_comment_was_deleted:
+ other: Your comment has been deleted
+#The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ all_read: Mark all as read
+ show_more: Show more
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language (optional)
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal Rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image File
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed 4 MB.
+ desc:
+ label: Description (optional)
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered List
+ unordered_list:
+ text: Bulleted List
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL Slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ content: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ characters: content must be at least 6 characters in length.
+ reopen:
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ success: This post has been reopened
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_question_deleted: This post has been deleted
+ tip_answer_deleted: This answer has been deleted
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ save: Save
+ delete: Delete
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ add_question: Add question
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post
+ modal_confirm:
+ title: Error...
+ account_result:
+ page_title: Welcome to {{site_name}}
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ invalid: >-
+ Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ newest: Newest
+ score: Score
+ edit_profile: Edit Profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ upvote: upvote
+ downvote: downvote
+ mod_short: Mod
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please Choose a Language
+ db_type:
+ label: Database Engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database Host
+ placeholder: "db:3306"
+ msg: Database Host cannot be empty.
+ db_name:
+ label: Database Name
+ placeholder: answer
+ msg: Database Name cannot be empty.
+ db_file:
+ label: Database File
+ placeholder: /data/answer.db
+ msg: Database File cannot be empty.
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: After you've done that, click "Next" button.
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site Name
+ msg: Site Name cannot be empty.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ contact_email:
+ label: Contact Email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact Email cannot be empty.
+ incorrect: Contact Email incorrect format.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ counts:
+ views: views
+ votes: votes
+ answers: answers
+ accepted: Accepted
+ page_404:
+ desc: "Unfortunately, this page doesn't exist."
+ back_home: Back to homepage
+ page_50X:
+ desc: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css-html: CSS/HTML
+ login: Login
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site Statistics
+ questions: "Questions:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ active_users: "Active users:"
+ flags: "Flags:"
+ site_health_status: Site Health Status
+ version: "Version:"
+ https: "HTTPS:"
+ uploading_files: "Uploading files:"
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System Info
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ answer_links: Answer Links
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ created: Created
+ action: Action
+ review: Review
+ change_modal:
+ title: Change user status to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ normal_name: normal
+ normal_desc: A normal user can ask and answer questions.
+ suspended_name: suspended
+ suspended_desc: A suspended user can't log in.
+ deleted_name: deleted
+ deleted_desc: "Delete profile, authentication associations."
+ inactive_name: inactive
+ inactive_desc: An inactive user must re-validate their email.
+ confirm_title: Delete this user
+ confirm_content: Are you sure you want to delete this user? This is permanent!
+ confirm_btn: Delete
+ msg:
+ empty: Please select a reason.
+ status_modal:
+ title: "Change {{ type }} status to..."
+ normal_name: normal
+ normal_desc: A normal post available to everyone.
+ closed_name: closed
+ closed_desc: "A closed question can't answer, but still can edit, vote and comment."
+ deleted_name: deleted
+ deleted_desc: All reputation gained and lost will be restored.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_next: Next
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg: Display name must be 2-30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ questions:
+ page_title: Questions
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ normal: Normal
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site Name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short Site Description (optional)
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site Description (optional)
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact Email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ interface:
+ page_title: Interface
+ logo:
+ label: Logo (optional)
+ msg: Site logo cannot be empty.
+ text: You can upload your image or <1>reset1> it to the site title text.
+ theme:
+ label: Theme
+ msg: Theme cannot be empty.
+ text: Select an existing theme.
+ language:
+ label: Interface Language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From Email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From Name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP Host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ none: None
+ smtp_port:
+ label: SMTP Port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP Username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP Password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test Email Recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP Authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo (optional)
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile Logo (optional)
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the "logo" setting will be used.
+ square_icon:
+ label: Square Icon (optional)
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon (optional)
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, "square icon" will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of Service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy Policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ write:
+ page_title: Write
+ recommend_tags:
+ label: Recommend Tags
+ text: "Please input tag slug above, one tag per line."
+ required_tag:
+ title: Required Tag
+ label: Set recommend tag as required
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved Tags
+ text: "Reserved tags can only be added to a post by moderator."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ navbar_style:
+ label: Navbar Style
+ text: Select an existing theme.
+ primary_color:
+ label: Primary Color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: This will insert as
+ head:
+ label: Head
+ text: This will insert before
+ header:
+ label: Header
+ text: This will insert after
+ footer:
+ label: Footer
+ text: This will insert before .
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ form:
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores
+ users_with_the_most_vote: Users who voted the most
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
diff --git a/answer-data/i18n/az_AZ.yaml b/answer-data/i18n/az_AZ.yaml
new file mode 100644
index 0000000..c7bfcaa
--- /dev/null
+++ b/answer-data/i18n/az_AZ.yaml
@@ -0,0 +1,1371 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+#The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: "Success."
+ unknown:
+ other: "Unknown error."
+ request_format_error:
+ other: "Request format is not valid."
+ unauthorized_error:
+ other: "Unauthorized."
+ database_error:
+ other: "Data server error."
+ role:
+ name:
+ user:
+ other: "User"
+ admin:
+ other: "Admin"
+ moderator:
+ other: "Moderator"
+ description:
+ user:
+ other: "Default with no special access."
+ admin:
+ other: "Have the full power to access the site."
+ moderator:
+ other: "Has access to all posts except admin settings."
+ email:
+ other: "Email"
+ password:
+ other: "Password"
+ email_or_password_wrong_error:
+ other: "Email and password do not match."
+ error:
+ admin:
+ email_or_password_wrong:
+ other: Email and password do not match.
+ answer:
+ not_found:
+ other: "Answer do not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_update:
+ other: "No permission to update."
+ comment:
+ edit_without_permission:
+ other: "Comment are not allowed to edit."
+ not_found:
+ other: "Comment not found."
+ email:
+ duplicate:
+ other: "Email already exists."
+ need_to_be_verified:
+ other: "Email should be verified."
+ verify_url_expired:
+ other: "Email verified URL has expired, please resend the email."
+ lang:
+ not_found:
+ other: "Language file not found."
+ object:
+ captcha_verification_failed:
+ other: "Captcha wrong."
+ disallow_follow:
+ other: "You are not allowed to follow."
+ disallow_vote:
+ other: "You are not allowed to vote."
+ disallow_vote_your_self:
+ other: "You can't vote for your own post."
+ not_found:
+ other: "Object not found."
+ verification_failed:
+ other: "Verification failed."
+ email_or_password_incorrect:
+ other: "Email and password do not match."
+ old_password_verification_failed:
+ other: "The old password verification failed"
+ new_password_same_as_previous_setting:
+ other: "The new password is the same as the previous one."
+ question:
+ not_found:
+ other: "Question not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_close:
+ other: "No permission to close."
+ cannot_update:
+ other: "No permission to update."
+ rank:
+ fail_to_meet_the_condition:
+ other: "Rank fail to meet the condition."
+ report:
+ handle_failed:
+ other: "Report handle failed."
+ not_found:
+ other: "Report not found."
+ tag:
+ not_found:
+ other: "Tag not found."
+ recommend_tag_not_found:
+ other: "Recommend Tag is not exist."
+ recommend_tag_enter:
+ other: "Please enter at least one required tag."
+ not_contain_synonym_tags:
+ other: "Should not contain synonym tags."
+ cannot_update:
+ other: "No permission to update."
+ cannot_set_synonym_as_itself:
+ other: "You cannot set the synonym of the current tag as itself."
+ smtp:
+ config_from_name_cannot_be_email:
+ other: "The From Name cannot be a email address."
+ theme:
+ not_found:
+ other: "Theme not found."
+ revision:
+ review_underway:
+ other: "Can't edit currently, there is a version in the review queue."
+ no_permission:
+ other: "No permission to Revision."
+ user:
+ email_or_password_wrong:
+ other:
+ other: Email and password do not match.
+ not_found:
+ other: "User not found."
+ suspended:
+ other: "User has been suspended."
+ username_invalid:
+ other: "Username is invalid."
+ username_duplicate:
+ other: "Username is already in use."
+ set_avatar:
+ other: "Avatar set failed."
+ cannot_update_your_role:
+ other: "You cannot modify your role."
+ not_allowed_registration:
+ other: "Currently the site is not open for registration"
+ config:
+ read_config_failed:
+ other: "Read config failed"
+ database:
+ connection_failed:
+ other: "Database connection failed"
+ create_table_failed:
+ other: "Create table failed"
+ install:
+ create_config_failed:
+ other: "Can't create the config.yaml file."
+ report:
+ spam:
+ name:
+ other: "spam"
+ desc:
+ other: "This post is an advertisement, or vandalism. It is not useful or relevant to the current topic."
+ rude:
+ name:
+ other: "rude or abusive"
+ desc:
+ other: "A reasonable person would find this content inappropriate for respectful discourse."
+ duplicate:
+ name:
+ other: "a duplicate"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ not_answer:
+ name:
+ other: "not an answer"
+ desc:
+ other: "This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether."
+ not_need:
+ name:
+ other: "no longer needed"
+ desc:
+ other: "This comment is outdated, conversational or not relevant to this post."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires staff attention for another reason not listed above."
+ question:
+ close:
+ duplicate:
+ name:
+ other: "spam"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ guideline:
+ name:
+ other: "a community-specific reason"
+ desc:
+ other: "This question doesn't meet a community guideline."
+ multiple:
+ name:
+ other: "needs details or clarity"
+ desc:
+ other: "This question currently includes multiple questions in one. It should focus on one problem only."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires another reason not listed above."
+ operation_type:
+ asked:
+ other: "asked"
+ answered:
+ other: "answered"
+ modified:
+ other: "modified"
+ notification:
+ action:
+ update_question:
+ other: "updated question"
+ answer_the_question:
+ other: "answered question"
+ update_answer:
+ other: "updated answer"
+ accept_answer:
+ other: "accepted answer"
+ comment_question:
+ other: "commented question"
+ comment_answer:
+ other: "commented answer"
+ reply_to_you:
+ other: "replied to you"
+ mention_you:
+ other: "mentioned you"
+ your_question_is_closed:
+ other: "Your question has been closed"
+ your_question_was_deleted:
+ other: "Your question has been deleted"
+ your_answer_was_deleted:
+ other: "Your answer has been deleted"
+ your_comment_was_deleted:
+ other: "Your comment has been deleted"
+#The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ all_read: Mark all as read
+ show_more: Show more
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language (optional)
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal Rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image File
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed 4 MB.
+ desc:
+ label: Description (optional)
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered List
+ unordered_list:
+ text: Bulleted List
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL Slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ content: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ reopen:
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ success: This post has been reopened
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_question_deleted: This post has been deleted
+ tip_answer_deleted: This answer has been deleted
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ save: Save
+ delete: Delete
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ add_question: Add question
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post
+ modal_confirm:
+ title: Error...
+ account_result:
+ page_title: Welcome to Answer
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ invalid: >-
+ Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ newest: Newest
+ score: Score
+ edit_profile: Edit Profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ upvote: upvote
+ downvote: downvote
+ mod_short: Mod
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please Choose a Language
+ db_type:
+ label: Database Engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database Host
+ placeholder: "db:3306"
+ msg: Database Host cannot be empty.
+ db_name:
+ label: Database Name
+ placeholder: answer
+ msg: Database Name cannot be empty.
+ db_file:
+ label: Database File
+ placeholder: /data/answer.db
+ msg: Database File cannot be empty.
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: "After you've done that, click “Next” button."
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site Name
+ msg: Site Name cannot be empty.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ contact_email:
+ label: Contact Email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact Email cannot be empty.
+ incorrect: Contact Email incorrect format.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ page_404:
+ desc: "Unfortunately, this page doesn't exist."
+ back_home: Back to homepage
+ page_50X:
+ desc: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css-html: CSS/HTML
+ login: Login
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site Statistics
+ questions: "Questions:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ active_users: "Active users:"
+ flags: "Flags:"
+ site_health_status: Site Health Status
+ version: "Version:"
+ https: "HTTPS:"
+ uploading_files: "Uploading files:"
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System Info
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ answer_links: Answer Links
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ created: Created
+ action: Action
+ review: Review
+ change_modal:
+ title: Change user status to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ normal_name: normal
+ normal_desc: A normal user can ask and answer questions.
+ suspended_name: suspended
+ suspended_desc: A suspended user can't log in.
+ deleted_name: deleted
+ deleted_desc: "Delete profile, authentication associations."
+ inactive_name: inactive
+ inactive_desc: An inactive user must re-validate their email.
+ confirm_title: Delete this user
+ confirm_content: Are you sure you want to delete this user? This is permanent!
+ confirm_btn: Delete
+ msg:
+ empty: Please select a reason.
+ status_modal:
+ title: "Change {{ type }} status to..."
+ normal_name: normal
+ normal_desc: A normal post available to everyone.
+ closed_name: closed
+ closed_desc: "A closed question can't answer, but still can edit, vote and comment."
+ deleted_name: deleted
+ deleted_desc: All reputation gained and lost will be restored.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_next: Next
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg: display_name must be at 2 - 30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ questions:
+ page_title: Questions
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ normal: Normal
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site Name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short Site Description (optional)
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site Description (optional)
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact Email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ interface:
+ page_title: Interface
+ logo:
+ label: Logo (optional)
+ msg: Site logo cannot be empty.
+ text: You can upload your image or <1>reset1> it to the site title text.
+ theme:
+ label: Theme
+ msg: Theme cannot be empty.
+ text: Select an existing theme.
+ language:
+ label: Interface Language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From Email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From Name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP Host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ none: None
+ smtp_port:
+ label: SMTP Port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP Username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP Password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test Email Recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP Authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo (optional)
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile Logo (optional)
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the “logo” setting will be used.
+ square_icon:
+ label: Square Icon (optional)
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon (optional)
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, “square icon” will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of Service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy Policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ write:
+ page_title: Write
+ recommend_tags:
+ label: Recommend Tags
+ text: "Please input tag slug above, one tag per line."
+ required_tag:
+ title: Required Tag
+ label: Set recommend tag as required
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved Tags
+ text: "Reserved tags can only be added to a post by moderator."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ navbar_style:
+ label: Navbar Style
+ text: Select an existing theme.
+ primary_color:
+ label: Primary Color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: This will insert as
+ head:
+ label: Head
+ text: This will insert before
+ header:
+ label: Header
+ text: This will insert after
+ footer:
+ label: Footer
+ text: This will insert before .
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ form:
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores
+ users_with_the_most_vote: Users who voted the most
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
diff --git a/answer-data/i18n/bal_BA.yaml b/answer-data/i18n/bal_BA.yaml
new file mode 100644
index 0000000..c7bfcaa
--- /dev/null
+++ b/answer-data/i18n/bal_BA.yaml
@@ -0,0 +1,1371 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+#The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: "Success."
+ unknown:
+ other: "Unknown error."
+ request_format_error:
+ other: "Request format is not valid."
+ unauthorized_error:
+ other: "Unauthorized."
+ database_error:
+ other: "Data server error."
+ role:
+ name:
+ user:
+ other: "User"
+ admin:
+ other: "Admin"
+ moderator:
+ other: "Moderator"
+ description:
+ user:
+ other: "Default with no special access."
+ admin:
+ other: "Have the full power to access the site."
+ moderator:
+ other: "Has access to all posts except admin settings."
+ email:
+ other: "Email"
+ password:
+ other: "Password"
+ email_or_password_wrong_error:
+ other: "Email and password do not match."
+ error:
+ admin:
+ email_or_password_wrong:
+ other: Email and password do not match.
+ answer:
+ not_found:
+ other: "Answer do not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_update:
+ other: "No permission to update."
+ comment:
+ edit_without_permission:
+ other: "Comment are not allowed to edit."
+ not_found:
+ other: "Comment not found."
+ email:
+ duplicate:
+ other: "Email already exists."
+ need_to_be_verified:
+ other: "Email should be verified."
+ verify_url_expired:
+ other: "Email verified URL has expired, please resend the email."
+ lang:
+ not_found:
+ other: "Language file not found."
+ object:
+ captcha_verification_failed:
+ other: "Captcha wrong."
+ disallow_follow:
+ other: "You are not allowed to follow."
+ disallow_vote:
+ other: "You are not allowed to vote."
+ disallow_vote_your_self:
+ other: "You can't vote for your own post."
+ not_found:
+ other: "Object not found."
+ verification_failed:
+ other: "Verification failed."
+ email_or_password_incorrect:
+ other: "Email and password do not match."
+ old_password_verification_failed:
+ other: "The old password verification failed"
+ new_password_same_as_previous_setting:
+ other: "The new password is the same as the previous one."
+ question:
+ not_found:
+ other: "Question not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_close:
+ other: "No permission to close."
+ cannot_update:
+ other: "No permission to update."
+ rank:
+ fail_to_meet_the_condition:
+ other: "Rank fail to meet the condition."
+ report:
+ handle_failed:
+ other: "Report handle failed."
+ not_found:
+ other: "Report not found."
+ tag:
+ not_found:
+ other: "Tag not found."
+ recommend_tag_not_found:
+ other: "Recommend Tag is not exist."
+ recommend_tag_enter:
+ other: "Please enter at least one required tag."
+ not_contain_synonym_tags:
+ other: "Should not contain synonym tags."
+ cannot_update:
+ other: "No permission to update."
+ cannot_set_synonym_as_itself:
+ other: "You cannot set the synonym of the current tag as itself."
+ smtp:
+ config_from_name_cannot_be_email:
+ other: "The From Name cannot be a email address."
+ theme:
+ not_found:
+ other: "Theme not found."
+ revision:
+ review_underway:
+ other: "Can't edit currently, there is a version in the review queue."
+ no_permission:
+ other: "No permission to Revision."
+ user:
+ email_or_password_wrong:
+ other:
+ other: Email and password do not match.
+ not_found:
+ other: "User not found."
+ suspended:
+ other: "User has been suspended."
+ username_invalid:
+ other: "Username is invalid."
+ username_duplicate:
+ other: "Username is already in use."
+ set_avatar:
+ other: "Avatar set failed."
+ cannot_update_your_role:
+ other: "You cannot modify your role."
+ not_allowed_registration:
+ other: "Currently the site is not open for registration"
+ config:
+ read_config_failed:
+ other: "Read config failed"
+ database:
+ connection_failed:
+ other: "Database connection failed"
+ create_table_failed:
+ other: "Create table failed"
+ install:
+ create_config_failed:
+ other: "Can't create the config.yaml file."
+ report:
+ spam:
+ name:
+ other: "spam"
+ desc:
+ other: "This post is an advertisement, or vandalism. It is not useful or relevant to the current topic."
+ rude:
+ name:
+ other: "rude or abusive"
+ desc:
+ other: "A reasonable person would find this content inappropriate for respectful discourse."
+ duplicate:
+ name:
+ other: "a duplicate"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ not_answer:
+ name:
+ other: "not an answer"
+ desc:
+ other: "This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether."
+ not_need:
+ name:
+ other: "no longer needed"
+ desc:
+ other: "This comment is outdated, conversational or not relevant to this post."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires staff attention for another reason not listed above."
+ question:
+ close:
+ duplicate:
+ name:
+ other: "spam"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ guideline:
+ name:
+ other: "a community-specific reason"
+ desc:
+ other: "This question doesn't meet a community guideline."
+ multiple:
+ name:
+ other: "needs details or clarity"
+ desc:
+ other: "This question currently includes multiple questions in one. It should focus on one problem only."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires another reason not listed above."
+ operation_type:
+ asked:
+ other: "asked"
+ answered:
+ other: "answered"
+ modified:
+ other: "modified"
+ notification:
+ action:
+ update_question:
+ other: "updated question"
+ answer_the_question:
+ other: "answered question"
+ update_answer:
+ other: "updated answer"
+ accept_answer:
+ other: "accepted answer"
+ comment_question:
+ other: "commented question"
+ comment_answer:
+ other: "commented answer"
+ reply_to_you:
+ other: "replied to you"
+ mention_you:
+ other: "mentioned you"
+ your_question_is_closed:
+ other: "Your question has been closed"
+ your_question_was_deleted:
+ other: "Your question has been deleted"
+ your_answer_was_deleted:
+ other: "Your answer has been deleted"
+ your_comment_was_deleted:
+ other: "Your comment has been deleted"
+#The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ all_read: Mark all as read
+ show_more: Show more
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language (optional)
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal Rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image File
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed 4 MB.
+ desc:
+ label: Description (optional)
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered List
+ unordered_list:
+ text: Bulleted List
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL Slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ content: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ reopen:
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ success: This post has been reopened
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_question_deleted: This post has been deleted
+ tip_answer_deleted: This answer has been deleted
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ save: Save
+ delete: Delete
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ add_question: Add question
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post
+ modal_confirm:
+ title: Error...
+ account_result:
+ page_title: Welcome to Answer
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ invalid: >-
+ Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ newest: Newest
+ score: Score
+ edit_profile: Edit Profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ upvote: upvote
+ downvote: downvote
+ mod_short: Mod
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please Choose a Language
+ db_type:
+ label: Database Engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database Host
+ placeholder: "db:3306"
+ msg: Database Host cannot be empty.
+ db_name:
+ label: Database Name
+ placeholder: answer
+ msg: Database Name cannot be empty.
+ db_file:
+ label: Database File
+ placeholder: /data/answer.db
+ msg: Database File cannot be empty.
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: "After you've done that, click “Next” button."
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site Name
+ msg: Site Name cannot be empty.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ contact_email:
+ label: Contact Email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact Email cannot be empty.
+ incorrect: Contact Email incorrect format.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ page_404:
+ desc: "Unfortunately, this page doesn't exist."
+ back_home: Back to homepage
+ page_50X:
+ desc: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css-html: CSS/HTML
+ login: Login
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site Statistics
+ questions: "Questions:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ active_users: "Active users:"
+ flags: "Flags:"
+ site_health_status: Site Health Status
+ version: "Version:"
+ https: "HTTPS:"
+ uploading_files: "Uploading files:"
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System Info
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ answer_links: Answer Links
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ created: Created
+ action: Action
+ review: Review
+ change_modal:
+ title: Change user status to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ normal_name: normal
+ normal_desc: A normal user can ask and answer questions.
+ suspended_name: suspended
+ suspended_desc: A suspended user can't log in.
+ deleted_name: deleted
+ deleted_desc: "Delete profile, authentication associations."
+ inactive_name: inactive
+ inactive_desc: An inactive user must re-validate their email.
+ confirm_title: Delete this user
+ confirm_content: Are you sure you want to delete this user? This is permanent!
+ confirm_btn: Delete
+ msg:
+ empty: Please select a reason.
+ status_modal:
+ title: "Change {{ type }} status to..."
+ normal_name: normal
+ normal_desc: A normal post available to everyone.
+ closed_name: closed
+ closed_desc: "A closed question can't answer, but still can edit, vote and comment."
+ deleted_name: deleted
+ deleted_desc: All reputation gained and lost will be restored.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_next: Next
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg: display_name must be at 2 - 30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ questions:
+ page_title: Questions
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ normal: Normal
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site Name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short Site Description (optional)
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site Description (optional)
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact Email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ interface:
+ page_title: Interface
+ logo:
+ label: Logo (optional)
+ msg: Site logo cannot be empty.
+ text: You can upload your image or <1>reset1> it to the site title text.
+ theme:
+ label: Theme
+ msg: Theme cannot be empty.
+ text: Select an existing theme.
+ language:
+ label: Interface Language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From Email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From Name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP Host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ none: None
+ smtp_port:
+ label: SMTP Port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP Username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP Password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test Email Recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP Authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo (optional)
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile Logo (optional)
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the “logo” setting will be used.
+ square_icon:
+ label: Square Icon (optional)
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon (optional)
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, “square icon” will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of Service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy Policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ write:
+ page_title: Write
+ recommend_tags:
+ label: Recommend Tags
+ text: "Please input tag slug above, one tag per line."
+ required_tag:
+ title: Required Tag
+ label: Set recommend tag as required
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved Tags
+ text: "Reserved tags can only be added to a post by moderator."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ navbar_style:
+ label: Navbar Style
+ text: Select an existing theme.
+ primary_color:
+ label: Primary Color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: This will insert as
+ head:
+ label: Head
+ text: This will insert before
+ header:
+ label: Header
+ text: This will insert after
+ footer:
+ label: Footer
+ text: This will insert before .
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ form:
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores
+ users_with_the_most_vote: Users who voted the most
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
diff --git a/answer-data/i18n/ban_ID.yaml b/answer-data/i18n/ban_ID.yaml
new file mode 100644
index 0000000..c7bfcaa
--- /dev/null
+++ b/answer-data/i18n/ban_ID.yaml
@@ -0,0 +1,1371 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+#The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: "Success."
+ unknown:
+ other: "Unknown error."
+ request_format_error:
+ other: "Request format is not valid."
+ unauthorized_error:
+ other: "Unauthorized."
+ database_error:
+ other: "Data server error."
+ role:
+ name:
+ user:
+ other: "User"
+ admin:
+ other: "Admin"
+ moderator:
+ other: "Moderator"
+ description:
+ user:
+ other: "Default with no special access."
+ admin:
+ other: "Have the full power to access the site."
+ moderator:
+ other: "Has access to all posts except admin settings."
+ email:
+ other: "Email"
+ password:
+ other: "Password"
+ email_or_password_wrong_error:
+ other: "Email and password do not match."
+ error:
+ admin:
+ email_or_password_wrong:
+ other: Email and password do not match.
+ answer:
+ not_found:
+ other: "Answer do not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_update:
+ other: "No permission to update."
+ comment:
+ edit_without_permission:
+ other: "Comment are not allowed to edit."
+ not_found:
+ other: "Comment not found."
+ email:
+ duplicate:
+ other: "Email already exists."
+ need_to_be_verified:
+ other: "Email should be verified."
+ verify_url_expired:
+ other: "Email verified URL has expired, please resend the email."
+ lang:
+ not_found:
+ other: "Language file not found."
+ object:
+ captcha_verification_failed:
+ other: "Captcha wrong."
+ disallow_follow:
+ other: "You are not allowed to follow."
+ disallow_vote:
+ other: "You are not allowed to vote."
+ disallow_vote_your_self:
+ other: "You can't vote for your own post."
+ not_found:
+ other: "Object not found."
+ verification_failed:
+ other: "Verification failed."
+ email_or_password_incorrect:
+ other: "Email and password do not match."
+ old_password_verification_failed:
+ other: "The old password verification failed"
+ new_password_same_as_previous_setting:
+ other: "The new password is the same as the previous one."
+ question:
+ not_found:
+ other: "Question not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_close:
+ other: "No permission to close."
+ cannot_update:
+ other: "No permission to update."
+ rank:
+ fail_to_meet_the_condition:
+ other: "Rank fail to meet the condition."
+ report:
+ handle_failed:
+ other: "Report handle failed."
+ not_found:
+ other: "Report not found."
+ tag:
+ not_found:
+ other: "Tag not found."
+ recommend_tag_not_found:
+ other: "Recommend Tag is not exist."
+ recommend_tag_enter:
+ other: "Please enter at least one required tag."
+ not_contain_synonym_tags:
+ other: "Should not contain synonym tags."
+ cannot_update:
+ other: "No permission to update."
+ cannot_set_synonym_as_itself:
+ other: "You cannot set the synonym of the current tag as itself."
+ smtp:
+ config_from_name_cannot_be_email:
+ other: "The From Name cannot be a email address."
+ theme:
+ not_found:
+ other: "Theme not found."
+ revision:
+ review_underway:
+ other: "Can't edit currently, there is a version in the review queue."
+ no_permission:
+ other: "No permission to Revision."
+ user:
+ email_or_password_wrong:
+ other:
+ other: Email and password do not match.
+ not_found:
+ other: "User not found."
+ suspended:
+ other: "User has been suspended."
+ username_invalid:
+ other: "Username is invalid."
+ username_duplicate:
+ other: "Username is already in use."
+ set_avatar:
+ other: "Avatar set failed."
+ cannot_update_your_role:
+ other: "You cannot modify your role."
+ not_allowed_registration:
+ other: "Currently the site is not open for registration"
+ config:
+ read_config_failed:
+ other: "Read config failed"
+ database:
+ connection_failed:
+ other: "Database connection failed"
+ create_table_failed:
+ other: "Create table failed"
+ install:
+ create_config_failed:
+ other: "Can't create the config.yaml file."
+ report:
+ spam:
+ name:
+ other: "spam"
+ desc:
+ other: "This post is an advertisement, or vandalism. It is not useful or relevant to the current topic."
+ rude:
+ name:
+ other: "rude or abusive"
+ desc:
+ other: "A reasonable person would find this content inappropriate for respectful discourse."
+ duplicate:
+ name:
+ other: "a duplicate"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ not_answer:
+ name:
+ other: "not an answer"
+ desc:
+ other: "This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether."
+ not_need:
+ name:
+ other: "no longer needed"
+ desc:
+ other: "This comment is outdated, conversational or not relevant to this post."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires staff attention for another reason not listed above."
+ question:
+ close:
+ duplicate:
+ name:
+ other: "spam"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ guideline:
+ name:
+ other: "a community-specific reason"
+ desc:
+ other: "This question doesn't meet a community guideline."
+ multiple:
+ name:
+ other: "needs details or clarity"
+ desc:
+ other: "This question currently includes multiple questions in one. It should focus on one problem only."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires another reason not listed above."
+ operation_type:
+ asked:
+ other: "asked"
+ answered:
+ other: "answered"
+ modified:
+ other: "modified"
+ notification:
+ action:
+ update_question:
+ other: "updated question"
+ answer_the_question:
+ other: "answered question"
+ update_answer:
+ other: "updated answer"
+ accept_answer:
+ other: "accepted answer"
+ comment_question:
+ other: "commented question"
+ comment_answer:
+ other: "commented answer"
+ reply_to_you:
+ other: "replied to you"
+ mention_you:
+ other: "mentioned you"
+ your_question_is_closed:
+ other: "Your question has been closed"
+ your_question_was_deleted:
+ other: "Your question has been deleted"
+ your_answer_was_deleted:
+ other: "Your answer has been deleted"
+ your_comment_was_deleted:
+ other: "Your comment has been deleted"
+#The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ all_read: Mark all as read
+ show_more: Show more
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language (optional)
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal Rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image File
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed 4 MB.
+ desc:
+ label: Description (optional)
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered List
+ unordered_list:
+ text: Bulleted List
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL Slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ content: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ reopen:
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ success: This post has been reopened
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_question_deleted: This post has been deleted
+ tip_answer_deleted: This answer has been deleted
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ save: Save
+ delete: Delete
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ add_question: Add question
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post
+ modal_confirm:
+ title: Error...
+ account_result:
+ page_title: Welcome to Answer
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ invalid: >-
+ Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ newest: Newest
+ score: Score
+ edit_profile: Edit Profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ upvote: upvote
+ downvote: downvote
+ mod_short: Mod
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please Choose a Language
+ db_type:
+ label: Database Engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database Host
+ placeholder: "db:3306"
+ msg: Database Host cannot be empty.
+ db_name:
+ label: Database Name
+ placeholder: answer
+ msg: Database Name cannot be empty.
+ db_file:
+ label: Database File
+ placeholder: /data/answer.db
+ msg: Database File cannot be empty.
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: "After you've done that, click “Next” button."
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site Name
+ msg: Site Name cannot be empty.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ contact_email:
+ label: Contact Email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact Email cannot be empty.
+ incorrect: Contact Email incorrect format.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ page_404:
+ desc: "Unfortunately, this page doesn't exist."
+ back_home: Back to homepage
+ page_50X:
+ desc: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css-html: CSS/HTML
+ login: Login
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site Statistics
+ questions: "Questions:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ active_users: "Active users:"
+ flags: "Flags:"
+ site_health_status: Site Health Status
+ version: "Version:"
+ https: "HTTPS:"
+ uploading_files: "Uploading files:"
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System Info
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ answer_links: Answer Links
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ created: Created
+ action: Action
+ review: Review
+ change_modal:
+ title: Change user status to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ normal_name: normal
+ normal_desc: A normal user can ask and answer questions.
+ suspended_name: suspended
+ suspended_desc: A suspended user can't log in.
+ deleted_name: deleted
+ deleted_desc: "Delete profile, authentication associations."
+ inactive_name: inactive
+ inactive_desc: An inactive user must re-validate their email.
+ confirm_title: Delete this user
+ confirm_content: Are you sure you want to delete this user? This is permanent!
+ confirm_btn: Delete
+ msg:
+ empty: Please select a reason.
+ status_modal:
+ title: "Change {{ type }} status to..."
+ normal_name: normal
+ normal_desc: A normal post available to everyone.
+ closed_name: closed
+ closed_desc: "A closed question can't answer, but still can edit, vote and comment."
+ deleted_name: deleted
+ deleted_desc: All reputation gained and lost will be restored.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_next: Next
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg: display_name must be at 2 - 30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ questions:
+ page_title: Questions
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ normal: Normal
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site Name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short Site Description (optional)
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site Description (optional)
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact Email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ interface:
+ page_title: Interface
+ logo:
+ label: Logo (optional)
+ msg: Site logo cannot be empty.
+ text: You can upload your image or <1>reset1> it to the site title text.
+ theme:
+ label: Theme
+ msg: Theme cannot be empty.
+ text: Select an existing theme.
+ language:
+ label: Interface Language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From Email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From Name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP Host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ none: None
+ smtp_port:
+ label: SMTP Port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP Username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP Password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test Email Recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP Authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo (optional)
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile Logo (optional)
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the “logo” setting will be used.
+ square_icon:
+ label: Square Icon (optional)
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon (optional)
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, “square icon” will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of Service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy Policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ write:
+ page_title: Write
+ recommend_tags:
+ label: Recommend Tags
+ text: "Please input tag slug above, one tag per line."
+ required_tag:
+ title: Required Tag
+ label: Set recommend tag as required
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved Tags
+ text: "Reserved tags can only be added to a post by moderator."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ navbar_style:
+ label: Navbar Style
+ text: Select an existing theme.
+ primary_color:
+ label: Primary Color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: This will insert as
+ head:
+ label: Head
+ text: This will insert before
+ header:
+ label: Header
+ text: This will insert after
+ footer:
+ label: Footer
+ text: This will insert before .
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ form:
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores
+ users_with_the_most_vote: Users who voted the most
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
diff --git a/answer-data/i18n/bn_BD.yaml b/answer-data/i18n/bn_BD.yaml
new file mode 100644
index 0000000..c7bfcaa
--- /dev/null
+++ b/answer-data/i18n/bn_BD.yaml
@@ -0,0 +1,1371 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+#The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: "Success."
+ unknown:
+ other: "Unknown error."
+ request_format_error:
+ other: "Request format is not valid."
+ unauthorized_error:
+ other: "Unauthorized."
+ database_error:
+ other: "Data server error."
+ role:
+ name:
+ user:
+ other: "User"
+ admin:
+ other: "Admin"
+ moderator:
+ other: "Moderator"
+ description:
+ user:
+ other: "Default with no special access."
+ admin:
+ other: "Have the full power to access the site."
+ moderator:
+ other: "Has access to all posts except admin settings."
+ email:
+ other: "Email"
+ password:
+ other: "Password"
+ email_or_password_wrong_error:
+ other: "Email and password do not match."
+ error:
+ admin:
+ email_or_password_wrong:
+ other: Email and password do not match.
+ answer:
+ not_found:
+ other: "Answer do not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_update:
+ other: "No permission to update."
+ comment:
+ edit_without_permission:
+ other: "Comment are not allowed to edit."
+ not_found:
+ other: "Comment not found."
+ email:
+ duplicate:
+ other: "Email already exists."
+ need_to_be_verified:
+ other: "Email should be verified."
+ verify_url_expired:
+ other: "Email verified URL has expired, please resend the email."
+ lang:
+ not_found:
+ other: "Language file not found."
+ object:
+ captcha_verification_failed:
+ other: "Captcha wrong."
+ disallow_follow:
+ other: "You are not allowed to follow."
+ disallow_vote:
+ other: "You are not allowed to vote."
+ disallow_vote_your_self:
+ other: "You can't vote for your own post."
+ not_found:
+ other: "Object not found."
+ verification_failed:
+ other: "Verification failed."
+ email_or_password_incorrect:
+ other: "Email and password do not match."
+ old_password_verification_failed:
+ other: "The old password verification failed"
+ new_password_same_as_previous_setting:
+ other: "The new password is the same as the previous one."
+ question:
+ not_found:
+ other: "Question not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_close:
+ other: "No permission to close."
+ cannot_update:
+ other: "No permission to update."
+ rank:
+ fail_to_meet_the_condition:
+ other: "Rank fail to meet the condition."
+ report:
+ handle_failed:
+ other: "Report handle failed."
+ not_found:
+ other: "Report not found."
+ tag:
+ not_found:
+ other: "Tag not found."
+ recommend_tag_not_found:
+ other: "Recommend Tag is not exist."
+ recommend_tag_enter:
+ other: "Please enter at least one required tag."
+ not_contain_synonym_tags:
+ other: "Should not contain synonym tags."
+ cannot_update:
+ other: "No permission to update."
+ cannot_set_synonym_as_itself:
+ other: "You cannot set the synonym of the current tag as itself."
+ smtp:
+ config_from_name_cannot_be_email:
+ other: "The From Name cannot be a email address."
+ theme:
+ not_found:
+ other: "Theme not found."
+ revision:
+ review_underway:
+ other: "Can't edit currently, there is a version in the review queue."
+ no_permission:
+ other: "No permission to Revision."
+ user:
+ email_or_password_wrong:
+ other:
+ other: Email and password do not match.
+ not_found:
+ other: "User not found."
+ suspended:
+ other: "User has been suspended."
+ username_invalid:
+ other: "Username is invalid."
+ username_duplicate:
+ other: "Username is already in use."
+ set_avatar:
+ other: "Avatar set failed."
+ cannot_update_your_role:
+ other: "You cannot modify your role."
+ not_allowed_registration:
+ other: "Currently the site is not open for registration"
+ config:
+ read_config_failed:
+ other: "Read config failed"
+ database:
+ connection_failed:
+ other: "Database connection failed"
+ create_table_failed:
+ other: "Create table failed"
+ install:
+ create_config_failed:
+ other: "Can't create the config.yaml file."
+ report:
+ spam:
+ name:
+ other: "spam"
+ desc:
+ other: "This post is an advertisement, or vandalism. It is not useful or relevant to the current topic."
+ rude:
+ name:
+ other: "rude or abusive"
+ desc:
+ other: "A reasonable person would find this content inappropriate for respectful discourse."
+ duplicate:
+ name:
+ other: "a duplicate"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ not_answer:
+ name:
+ other: "not an answer"
+ desc:
+ other: "This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether."
+ not_need:
+ name:
+ other: "no longer needed"
+ desc:
+ other: "This comment is outdated, conversational or not relevant to this post."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires staff attention for another reason not listed above."
+ question:
+ close:
+ duplicate:
+ name:
+ other: "spam"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ guideline:
+ name:
+ other: "a community-specific reason"
+ desc:
+ other: "This question doesn't meet a community guideline."
+ multiple:
+ name:
+ other: "needs details or clarity"
+ desc:
+ other: "This question currently includes multiple questions in one. It should focus on one problem only."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires another reason not listed above."
+ operation_type:
+ asked:
+ other: "asked"
+ answered:
+ other: "answered"
+ modified:
+ other: "modified"
+ notification:
+ action:
+ update_question:
+ other: "updated question"
+ answer_the_question:
+ other: "answered question"
+ update_answer:
+ other: "updated answer"
+ accept_answer:
+ other: "accepted answer"
+ comment_question:
+ other: "commented question"
+ comment_answer:
+ other: "commented answer"
+ reply_to_you:
+ other: "replied to you"
+ mention_you:
+ other: "mentioned you"
+ your_question_is_closed:
+ other: "Your question has been closed"
+ your_question_was_deleted:
+ other: "Your question has been deleted"
+ your_answer_was_deleted:
+ other: "Your answer has been deleted"
+ your_comment_was_deleted:
+ other: "Your comment has been deleted"
+#The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ all_read: Mark all as read
+ show_more: Show more
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language (optional)
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal Rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image File
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed 4 MB.
+ desc:
+ label: Description (optional)
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered List
+ unordered_list:
+ text: Bulleted List
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL Slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ content: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ reopen:
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ success: This post has been reopened
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_question_deleted: This post has been deleted
+ tip_answer_deleted: This answer has been deleted
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ save: Save
+ delete: Delete
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ add_question: Add question
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post
+ modal_confirm:
+ title: Error...
+ account_result:
+ page_title: Welcome to Answer
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ invalid: >-
+ Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ newest: Newest
+ score: Score
+ edit_profile: Edit Profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ upvote: upvote
+ downvote: downvote
+ mod_short: Mod
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please Choose a Language
+ db_type:
+ label: Database Engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database Host
+ placeholder: "db:3306"
+ msg: Database Host cannot be empty.
+ db_name:
+ label: Database Name
+ placeholder: answer
+ msg: Database Name cannot be empty.
+ db_file:
+ label: Database File
+ placeholder: /data/answer.db
+ msg: Database File cannot be empty.
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: "After you've done that, click “Next” button."
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site Name
+ msg: Site Name cannot be empty.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ contact_email:
+ label: Contact Email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact Email cannot be empty.
+ incorrect: Contact Email incorrect format.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ page_404:
+ desc: "Unfortunately, this page doesn't exist."
+ back_home: Back to homepage
+ page_50X:
+ desc: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css-html: CSS/HTML
+ login: Login
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site Statistics
+ questions: "Questions:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ active_users: "Active users:"
+ flags: "Flags:"
+ site_health_status: Site Health Status
+ version: "Version:"
+ https: "HTTPS:"
+ uploading_files: "Uploading files:"
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System Info
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ answer_links: Answer Links
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ created: Created
+ action: Action
+ review: Review
+ change_modal:
+ title: Change user status to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ normal_name: normal
+ normal_desc: A normal user can ask and answer questions.
+ suspended_name: suspended
+ suspended_desc: A suspended user can't log in.
+ deleted_name: deleted
+ deleted_desc: "Delete profile, authentication associations."
+ inactive_name: inactive
+ inactive_desc: An inactive user must re-validate their email.
+ confirm_title: Delete this user
+ confirm_content: Are you sure you want to delete this user? This is permanent!
+ confirm_btn: Delete
+ msg:
+ empty: Please select a reason.
+ status_modal:
+ title: "Change {{ type }} status to..."
+ normal_name: normal
+ normal_desc: A normal post available to everyone.
+ closed_name: closed
+ closed_desc: "A closed question can't answer, but still can edit, vote and comment."
+ deleted_name: deleted
+ deleted_desc: All reputation gained and lost will be restored.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_next: Next
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg: display_name must be at 2 - 30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ questions:
+ page_title: Questions
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ normal: Normal
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site Name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short Site Description (optional)
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site Description (optional)
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact Email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ interface:
+ page_title: Interface
+ logo:
+ label: Logo (optional)
+ msg: Site logo cannot be empty.
+ text: You can upload your image or <1>reset1> it to the site title text.
+ theme:
+ label: Theme
+ msg: Theme cannot be empty.
+ text: Select an existing theme.
+ language:
+ label: Interface Language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From Email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From Name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP Host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ none: None
+ smtp_port:
+ label: SMTP Port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP Username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP Password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test Email Recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP Authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo (optional)
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile Logo (optional)
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the “logo” setting will be used.
+ square_icon:
+ label: Square Icon (optional)
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon (optional)
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, “square icon” will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of Service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy Policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ write:
+ page_title: Write
+ recommend_tags:
+ label: Recommend Tags
+ text: "Please input tag slug above, one tag per line."
+ required_tag:
+ title: Required Tag
+ label: Set recommend tag as required
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved Tags
+ text: "Reserved tags can only be added to a post by moderator."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ navbar_style:
+ label: Navbar Style
+ text: Select an existing theme.
+ primary_color:
+ label: Primary Color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: This will insert as
+ head:
+ label: Head
+ text: This will insert before
+ header:
+ label: Header
+ text: This will insert after
+ footer:
+ label: Footer
+ text: This will insert before .
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ form:
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores
+ users_with_the_most_vote: Users who voted the most
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
diff --git a/answer-data/i18n/bs_BA.yaml b/answer-data/i18n/bs_BA.yaml
new file mode 100644
index 0000000..c7bfcaa
--- /dev/null
+++ b/answer-data/i18n/bs_BA.yaml
@@ -0,0 +1,1371 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+#The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: "Success."
+ unknown:
+ other: "Unknown error."
+ request_format_error:
+ other: "Request format is not valid."
+ unauthorized_error:
+ other: "Unauthorized."
+ database_error:
+ other: "Data server error."
+ role:
+ name:
+ user:
+ other: "User"
+ admin:
+ other: "Admin"
+ moderator:
+ other: "Moderator"
+ description:
+ user:
+ other: "Default with no special access."
+ admin:
+ other: "Have the full power to access the site."
+ moderator:
+ other: "Has access to all posts except admin settings."
+ email:
+ other: "Email"
+ password:
+ other: "Password"
+ email_or_password_wrong_error:
+ other: "Email and password do not match."
+ error:
+ admin:
+ email_or_password_wrong:
+ other: Email and password do not match.
+ answer:
+ not_found:
+ other: "Answer do not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_update:
+ other: "No permission to update."
+ comment:
+ edit_without_permission:
+ other: "Comment are not allowed to edit."
+ not_found:
+ other: "Comment not found."
+ email:
+ duplicate:
+ other: "Email already exists."
+ need_to_be_verified:
+ other: "Email should be verified."
+ verify_url_expired:
+ other: "Email verified URL has expired, please resend the email."
+ lang:
+ not_found:
+ other: "Language file not found."
+ object:
+ captcha_verification_failed:
+ other: "Captcha wrong."
+ disallow_follow:
+ other: "You are not allowed to follow."
+ disallow_vote:
+ other: "You are not allowed to vote."
+ disallow_vote_your_self:
+ other: "You can't vote for your own post."
+ not_found:
+ other: "Object not found."
+ verification_failed:
+ other: "Verification failed."
+ email_or_password_incorrect:
+ other: "Email and password do not match."
+ old_password_verification_failed:
+ other: "The old password verification failed"
+ new_password_same_as_previous_setting:
+ other: "The new password is the same as the previous one."
+ question:
+ not_found:
+ other: "Question not found."
+ cannot_deleted:
+ other: "No permission to delete."
+ cannot_close:
+ other: "No permission to close."
+ cannot_update:
+ other: "No permission to update."
+ rank:
+ fail_to_meet_the_condition:
+ other: "Rank fail to meet the condition."
+ report:
+ handle_failed:
+ other: "Report handle failed."
+ not_found:
+ other: "Report not found."
+ tag:
+ not_found:
+ other: "Tag not found."
+ recommend_tag_not_found:
+ other: "Recommend Tag is not exist."
+ recommend_tag_enter:
+ other: "Please enter at least one required tag."
+ not_contain_synonym_tags:
+ other: "Should not contain synonym tags."
+ cannot_update:
+ other: "No permission to update."
+ cannot_set_synonym_as_itself:
+ other: "You cannot set the synonym of the current tag as itself."
+ smtp:
+ config_from_name_cannot_be_email:
+ other: "The From Name cannot be a email address."
+ theme:
+ not_found:
+ other: "Theme not found."
+ revision:
+ review_underway:
+ other: "Can't edit currently, there is a version in the review queue."
+ no_permission:
+ other: "No permission to Revision."
+ user:
+ email_or_password_wrong:
+ other:
+ other: Email and password do not match.
+ not_found:
+ other: "User not found."
+ suspended:
+ other: "User has been suspended."
+ username_invalid:
+ other: "Username is invalid."
+ username_duplicate:
+ other: "Username is already in use."
+ set_avatar:
+ other: "Avatar set failed."
+ cannot_update_your_role:
+ other: "You cannot modify your role."
+ not_allowed_registration:
+ other: "Currently the site is not open for registration"
+ config:
+ read_config_failed:
+ other: "Read config failed"
+ database:
+ connection_failed:
+ other: "Database connection failed"
+ create_table_failed:
+ other: "Create table failed"
+ install:
+ create_config_failed:
+ other: "Can't create the config.yaml file."
+ report:
+ spam:
+ name:
+ other: "spam"
+ desc:
+ other: "This post is an advertisement, or vandalism. It is not useful or relevant to the current topic."
+ rude:
+ name:
+ other: "rude or abusive"
+ desc:
+ other: "A reasonable person would find this content inappropriate for respectful discourse."
+ duplicate:
+ name:
+ other: "a duplicate"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ not_answer:
+ name:
+ other: "not an answer"
+ desc:
+ other: "This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether."
+ not_need:
+ name:
+ other: "no longer needed"
+ desc:
+ other: "This comment is outdated, conversational or not relevant to this post."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires staff attention for another reason not listed above."
+ question:
+ close:
+ duplicate:
+ name:
+ other: "spam"
+ desc:
+ other: "This question has been asked before and already has an answer."
+ guideline:
+ name:
+ other: "a community-specific reason"
+ desc:
+ other: "This question doesn't meet a community guideline."
+ multiple:
+ name:
+ other: "needs details or clarity"
+ desc:
+ other: "This question currently includes multiple questions in one. It should focus on one problem only."
+ other:
+ name:
+ other: "something else"
+ desc:
+ other: "This post requires another reason not listed above."
+ operation_type:
+ asked:
+ other: "asked"
+ answered:
+ other: "answered"
+ modified:
+ other: "modified"
+ notification:
+ action:
+ update_question:
+ other: "updated question"
+ answer_the_question:
+ other: "answered question"
+ update_answer:
+ other: "updated answer"
+ accept_answer:
+ other: "accepted answer"
+ comment_question:
+ other: "commented question"
+ comment_answer:
+ other: "commented answer"
+ reply_to_you:
+ other: "replied to you"
+ mention_you:
+ other: "mentioned you"
+ your_question_is_closed:
+ other: "Your question has been closed"
+ your_question_was_deleted:
+ other: "Your question has been deleted"
+ your_answer_was_deleted:
+ other: "Your answer has been deleted"
+ your_comment_was_deleted:
+ other: "Your comment has been deleted"
+#The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ all_read: Mark all as read
+ show_more: Show more
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language (optional)
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal Rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image File
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed 4 MB.
+ desc:
+ label: Description (optional)
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered List
+ unordered_list:
+ text: Bulleted List
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL Slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ content: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ reopen:
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ success: This post has been reopened
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_question_deleted: This post has been deleted
+ tip_answer_deleted: This answer has been deleted
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ save: Save
+ delete: Delete
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ add_question: Add question
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post
+ modal_confirm:
+ title: Error...
+ account_result:
+ page_title: Welcome to Answer
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ invalid: >-
+ Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ newest: Newest
+ score: Score
+ edit_profile: Edit Profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ upvote: upvote
+ downvote: downvote
+ mod_short: Mod
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please Choose a Language
+ db_type:
+ label: Database Engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database Host
+ placeholder: "db:3306"
+ msg: Database Host cannot be empty.
+ db_name:
+ label: Database Name
+ placeholder: answer
+ msg: Database Name cannot be empty.
+ db_file:
+ label: Database File
+ placeholder: /data/answer.db
+ msg: Database File cannot be empty.
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: "After you've done that, click “Next” button."
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site Name
+ msg: Site Name cannot be empty.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ contact_email:
+ label: Contact Email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact Email cannot be empty.
+ incorrect: Contact Email incorrect format.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ page_404:
+ desc: "Unfortunately, this page doesn't exist."
+ back_home: Back to homepage
+ page_50X:
+ desc: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css-html: CSS/HTML
+ login: Login
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site Statistics
+ questions: "Questions:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ active_users: "Active users:"
+ flags: "Flags:"
+ site_health_status: Site Health Status
+ version: "Version:"
+ https: "HTTPS:"
+ uploading_files: "Uploading files:"
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System Info
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ answer_links: Answer Links
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ created: Created
+ action: Action
+ review: Review
+ change_modal:
+ title: Change user status to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ normal_name: normal
+ normal_desc: A normal user can ask and answer questions.
+ suspended_name: suspended
+ suspended_desc: A suspended user can't log in.
+ deleted_name: deleted
+ deleted_desc: "Delete profile, authentication associations."
+ inactive_name: inactive
+ inactive_desc: An inactive user must re-validate their email.
+ confirm_title: Delete this user
+ confirm_content: Are you sure you want to delete this user? This is permanent!
+ confirm_btn: Delete
+ msg:
+ empty: Please select a reason.
+ status_modal:
+ title: "Change {{ type }} status to..."
+ normal_name: normal
+ normal_desc: A normal post available to everyone.
+ closed_name: closed
+ closed_desc: "A closed question can't answer, but still can edit, vote and comment."
+ deleted_name: deleted
+ deleted_desc: All reputation gained and lost will be restored.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_next: Next
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg: display_name must be at 2 - 30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8 - 32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ questions:
+ page_title: Questions
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ normal: Normal
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site Name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short Site Description (optional)
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site Description (optional)
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact Email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ interface:
+ page_title: Interface
+ logo:
+ label: Logo (optional)
+ msg: Site logo cannot be empty.
+ text: You can upload your image or <1>reset1> it to the site title text.
+ theme:
+ label: Theme
+ msg: Theme cannot be empty.
+ text: Select an existing theme.
+ language:
+ label: Interface Language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From Email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From Name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP Host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ none: None
+ smtp_port:
+ label: SMTP Port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP Username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP Password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test Email Recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP Authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo (optional)
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile Logo (optional)
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the “logo” setting will be used.
+ square_icon:
+ label: Square Icon (optional)
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon (optional)
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, “square icon” will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of Service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy Policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ write:
+ page_title: Write
+ recommend_tags:
+ label: Recommend Tags
+ text: "Please input tag slug above, one tag per line."
+ required_tag:
+ title: Required Tag
+ label: Set recommend tag as required
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved Tags
+ text: "Reserved tags can only be added to a post by moderator."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ navbar_style:
+ label: Navbar Style
+ text: Select an existing theme.
+ primary_color:
+ label: Primary Color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: This will insert as
+ head:
+ label: Head
+ text: This will insert before
+ header:
+ label: Header
+ text: This will insert after
+ footer:
+ label: Footer
+ text: This will insert before .
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ form:
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores
+ users_with_the_most_vote: Users who voted the most
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
diff --git a/answer-data/i18n/ca_ES.yaml b/answer-data/i18n/ca_ES.yaml
new file mode 100644
index 0000000..1f298b9
--- /dev/null
+++ b/answer-data/i18n/ca_ES.yaml
@@ -0,0 +1,1384 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+#The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: Success.
+ unknown:
+ other: Unknown error.
+ request_format_error:
+ other: Request format is not valid.
+ unauthorized_error:
+ other: Unauthorized.
+ database_error:
+ other: Data server error.
+ role:
+ name:
+ user:
+ other: User
+ admin:
+ other: Admin
+ moderator:
+ other: Moderator
+ description:
+ user:
+ other: Default with no special access.
+ admin:
+ other: Have the full power to access the site.
+ moderator:
+ other: Has access to all posts except admin settings.
+ email:
+ other: Email
+ password:
+ other: Password
+ email_or_password_wrong_error:
+ other: Email and password do not match.
+ error:
+ admin:
+ email_or_password_wrong:
+ other: Email and password do not match.
+ answer:
+ not_found:
+ other: Answer do not found.
+ cannot_deleted:
+ other: No permission to delete.
+ cannot_update:
+ other: No permission to update.
+ comment:
+ edit_without_permission:
+ other: Comment are not allowed to edit.
+ not_found:
+ other: Comment not found.
+ cannot_edit_after_deadline:
+ other: The comment time has been too long to modify.
+ email:
+ duplicate:
+ other: Email already exists.
+ need_to_be_verified:
+ other: Email should be verified.
+ verify_url_expired:
+ other: Email verified URL has expired, please resend the email.
+ lang:
+ not_found:
+ other: Language file not found.
+ object:
+ captcha_verification_failed:
+ other: Captcha wrong.
+ disallow_follow:
+ other: You are not allowed to follow.
+ disallow_vote:
+ other: You are not allowed to vote.
+ disallow_vote_your_self:
+ other: You can't vote for your own post.
+ not_found:
+ other: Object not found.
+ verification_failed:
+ other: Verification failed.
+ email_or_password_incorrect:
+ other: Email and password do not match.
+ old_password_verification_failed:
+ other: The old password verification failed
+ new_password_same_as_previous_setting:
+ other: The new password is the same as the previous one.
+ question:
+ not_found:
+ other: Question not found.
+ cannot_deleted:
+ other: No permission to delete.
+ cannot_close:
+ other: No permission to close.
+ cannot_update:
+ other: No permission to update.
+ rank:
+ fail_to_meet_the_condition:
+ other: Rank fail to meet the condition.
+ report:
+ handle_failed:
+ other: Report handle failed.
+ not_found:
+ other: Report not found.
+ tag:
+ not_found:
+ other: Tag not found.
+ recommend_tag_not_found:
+ other: Recommend Tag is not exist.
+ recommend_tag_enter:
+ other: Please enter at least one required tag.
+ not_contain_synonym_tags:
+ other: Should not contain synonym tags.
+ cannot_update:
+ other: No permission to update.
+ cannot_set_synonym_as_itself:
+ other: You cannot set the synonym of the current tag as itself.
+ smtp:
+ config_from_name_cannot_be_email:
+ other: The From Name cannot be a email address.
+ theme:
+ not_found:
+ other: Theme not found.
+ revision:
+ review_underway:
+ other: Can't edit currently, there is a version in the review queue.
+ no_permission:
+ other: No permission to Revision.
+ user:
+ email_or_password_wrong:
+ other:
+ other: Email and password do not match.
+ not_found:
+ other: User not found.
+ suspended:
+ other: User has been suspended.
+ username_invalid:
+ other: Username is invalid.
+ username_duplicate:
+ other: Username is already in use.
+ set_avatar:
+ other: Avatar set failed.
+ cannot_update_your_role:
+ other: You cannot modify your role.
+ not_allowed_registration:
+ other: Currently the site is not open for registration
+ config:
+ read_config_failed:
+ other: Read config failed
+ database:
+ connection_failed:
+ other: Database connection failed
+ create_table_failed:
+ other: Create table failed
+ install:
+ create_config_failed:
+ other: Can't create the config.yaml file.
+ upload:
+ unsupported_file_format:
+ other: Unsupported file format.
+ report:
+ spam:
+ name:
+ other: spam
+ desc:
+ other: This post is an advertisement, or vandalism. It is not useful or relevant to the current topic.
+ rude:
+ name:
+ other: rude or abusive
+ desc:
+ other: A reasonable person would find this content inappropriate for respectful discourse.
+ duplicate:
+ name:
+ other: a duplicate
+ desc:
+ other: This question has been asked before and already has an answer.
+ not_answer:
+ name:
+ other: not an answer
+ desc:
+ other: This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question, or deleted altogether.
+ not_need:
+ name:
+ other: no longer needed
+ desc:
+ other: This comment is outdated, conversational or not relevant to this post.
+ other:
+ name:
+ other: something else
+ desc:
+ other: This post requires staff attention for another reason not listed above.
+ question:
+ close:
+ duplicate:
+ name:
+ other: spam
+ desc:
+ other: This question has been asked before and already has an answer.
+ guideline:
+ name:
+ other: a community-specific reason
+ desc:
+ other: This question doesn't meet a community guideline.
+ multiple:
+ name:
+ other: needs details or clarity
+ desc:
+ other: This question currently includes multiple questions in one. It should focus on one problem only.
+ other:
+ name:
+ other: something else
+ desc:
+ other: This post requires another reason not listed above.
+ operation_type:
+ asked:
+ other: asked
+ answered:
+ other: answered
+ modified:
+ other: modified
+ notification:
+ action:
+ update_question:
+ other: updated question
+ answer_the_question:
+ other: answered question
+ update_answer:
+ other: updated answer
+ accept_answer:
+ other: accepted answer
+ comment_question:
+ other: commented question
+ comment_answer:
+ other: commented answer
+ reply_to_you:
+ other: replied to you
+ mention_you:
+ other: mentioned you
+ your_question_is_closed:
+ other: Your question has been closed
+ your_question_was_deleted:
+ other: Your question has been deleted
+ your_answer_was_deleted:
+ other: Your answer has been deleted
+ your_comment_was_deleted:
+ other: Your comment has been deleted
+#The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ all_read: Mark all as read
+ show_more: Show more
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language (optional)
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal Rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image File
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed 4 MB.
+ desc:
+ label: Description (optional)
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered List
+ unordered_list:
+ text: Bulleted List
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL Slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description (optional)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ content: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ characters: content must be at least 6 characters in length.
+ reopen:
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ success: This post has been reopened
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_question_deleted: This post has been deleted
+ tip_answer_deleted: This answer has been deleted
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ save: Save
+ delete: Delete
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ add_question: Add question
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post
+ modal_confirm:
+ title: Error...
+ account_result:
+ page_title: Welcome to {{site_name}}
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ invalid: >-
+ Sorry, this account confirmation link is no longer valid. Perhaps your account is already active?
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ newest: Newest
+ score: Score
+ edit_profile: Edit Profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ upvote: upvote
+ downvote: downvote
+ mod_short: Mod
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please Choose a Language
+ db_type:
+ label: Database Engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database Host
+ placeholder: "db:3306"
+ msg: Database Host cannot be empty.
+ db_name:
+ label: Database Name
+ placeholder: answer
+ msg: Database Name cannot be empty.
+ db_file:
+ label: Database File
+ placeholder: /data/answer.db
+ msg: Database File cannot be empty.
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: After you've done that, click "Next" button.
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site Name
+ msg: Site Name cannot be empty.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ contact_email:
+ label: Contact Email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact Email cannot be empty.
+ incorrect: Contact Email incorrect format.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ counts:
+ views: views
+ votes: votes
+ answers: answers
+ accepted: Accepted
+ page_404:
+ desc: "Unfortunately, this page doesn't exist."
+ back_home: Back to homepage
+ page_50X:
+ desc: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css-html: CSS/HTML
+ login: Login
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site Statistics
+ questions: "Questions:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ active_users: "Active users:"
+ flags: "Flags:"
+ site_health_status: Site Health Status
+ version: "Version:"
+ https: "HTTPS:"
+ uploading_files: "Uploading files:"
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System Info
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ answer_links: Answer Links
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ created: Created
+ action: Action
+ review: Review
+ change_modal:
+ title: Change user status to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ normal_name: normal
+ normal_desc: A normal user can ask and answer questions.
+ suspended_name: suspended
+ suspended_desc: A suspended user can't log in.
+ deleted_name: deleted
+ deleted_desc: "Delete profile, authentication associations."
+ inactive_name: inactive
+ inactive_desc: An inactive user must re-validate their email.
+ confirm_title: Delete this user
+ confirm_content: Are you sure you want to delete this user? This is permanent!
+ confirm_btn: Delete
+ msg:
+ empty: Please select a reason.
+ status_modal:
+ title: "Change {{ type }} status to..."
+ normal_name: normal
+ normal_desc: A normal post available to everyone.
+ closed_name: closed
+ closed_desc: "A closed question can't answer, but still can edit, vote and comment."
+ deleted_name: deleted
+ deleted_desc: All reputation gained and lost will be restored.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_next: Next
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ display_name:
+ label: Display Name
+ msg: Display name must be 2-30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ questions:
+ page_title: Questions
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ normal: Normal
+ deleted: Deleted
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site Name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short Site Description (optional)
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site Description (optional)
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact Email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ interface:
+ page_title: Interface
+ logo:
+ label: Logo (optional)
+ msg: Site logo cannot be empty.
+ text: You can upload your image or <1>reset1> it to the site title text.
+ theme:
+ label: Theme
+ msg: Theme cannot be empty.
+ text: Select an existing theme.
+ language:
+ label: Interface Language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From Email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From Name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP Host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ none: None
+ smtp_port:
+ label: SMTP Port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP Username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP Password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test Email Recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP Authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo (optional)
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile Logo (optional)
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the "logo" setting will be used.
+ square_icon:
+ label: Square Icon (optional)
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon (optional)
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, "square icon" will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of Service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy Policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ write:
+ page_title: Write
+ recommend_tags:
+ label: Recommend Tags
+ text: "Please input tag slug above, one tag per line."
+ required_tag:
+ title: Required Tag
+ label: Set recommend tag as required
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved Tags
+ text: "Reserved tags can only be added to a post by moderator."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ navbar_style:
+ label: Navbar Style
+ text: Select an existing theme.
+ primary_color:
+ label: Primary Color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: This will insert as
+ head:
+ label: Head
+ text: This will insert before
+ header:
+ label: Header
+ text: This will insert after
+ footer:
+ label: Footer
+ text: This will insert before .
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ form:
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores
+ users_with_the_most_vote: Users who voted the most
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
diff --git a/answer-data/i18n/cs_CZ.yaml b/answer-data/i18n/cs_CZ.yaml
new file mode 100644
index 0000000..e7561c9
--- /dev/null
+++ b/answer-data/i18n/cs_CZ.yaml
@@ -0,0 +1,2319 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: Úspěch.
+ unknown:
+ other: Neznámá chyba.
+ request_format_error:
+ other: Formát požadavku není platný.
+ unauthorized_error:
+ other: Neautorizováno.
+ database_error:
+ other: Chyba datového serveru.
+ forbidden_error:
+ other: Zakázáno.
+ duplicate_request_error:
+ other: Duplicitní odeslání.
+ action:
+ report:
+ other: Nahlásit
+ edit:
+ other: Upravit
+ delete:
+ other: Smazat
+ close:
+ other: Zavřít
+ reopen:
+ other: Znovu otevřít
+ forbidden_error:
+ other: Zakázáno.
+ pin:
+ other: Připnout
+ hide:
+ other: Skrýt
+ unpin:
+ other: Odepnout
+ show:
+ other: Zobrazit
+ invite_someone_to_answer:
+ other: Upravit
+ undelete:
+ other: Obnovit
+ merge:
+ other: Merge
+ role:
+ name:
+ user:
+ other: Uživatel
+ admin:
+ other: Administrátor
+ moderator:
+ other: Moderátor
+ description:
+ user:
+ other: Výchozí bez zvláštního přístupu.
+ admin:
+ other: Má plnou kontrolu nad stránkou.
+ moderator:
+ other: Má přístup ke všem příspěvkům kromě admin nastavení.
+ privilege:
+ level_1:
+ description:
+ other: Úroveň 1 (méně reputace je vyžadováno pro soukromý tým, skupinu)
+ level_2:
+ description:
+ other: Úroveň 2 (nízká reputace je vyžadována pro startovací komunitu)
+ level_3:
+ description:
+ other: Úroveň 3 (vysoká reputace je vyžadována pro vyspělou komunitu)
+ level_custom:
+ description:
+ other: Vlastní úroveň
+ rank_question_add_label:
+ other: Položit dotaz
+ rank_answer_add_label:
+ other: Napsat odpověď
+ rank_comment_add_label:
+ other: Napsat komentář
+ rank_report_add_label:
+ other: Nahlásit
+ rank_comment_vote_up_label:
+ other: Hlasovat pro komentář
+ rank_link_url_limit_label:
+ other: Zveřejnit více než 2 odkazy najednou
+ rank_question_vote_up_label:
+ other: Hlasovat pro dotaz
+ rank_answer_vote_up_label:
+ other: Hlasovat pro odpověď
+ rank_question_vote_down_label:
+ other: Hlasovat proti otázce
+ rank_answer_vote_down_label:
+ other: Hlasovat proti odpovědi
+ rank_invite_someone_to_answer_label:
+ other: Pozvěte někoho, aby odpověděl
+ rank_tag_add_label:
+ other: Vytvořit nový štítek
+ rank_tag_edit_label:
+ other: Upravit popis štítku (vyžaduje kontrolu)
+ rank_question_edit_label:
+ other: Upravit dotaz někoho jiného (vyžaduje kontrolu)
+ rank_answer_edit_label:
+ other: Upravit odpověď někoho jiného (vyžaduje kontrolu)
+ rank_question_edit_without_review_label:
+ other: Upravit dotaz někoho jiného (bez kontroly)
+ rank_answer_edit_without_review_label:
+ other: Upravit odpověď někoho jiného (bez kontroly)
+ rank_question_audit_label:
+ other: Zkontrolovat úpravy dotazu
+ rank_answer_audit_label:
+ other: Zkontrolovat úpravy odpovědí
+ rank_tag_audit_label:
+ other: Zkontrolovat úpravy štítků
+ rank_tag_edit_without_review_label:
+ other: Upravit popis štítku (bez kontroly)
+ rank_tag_synonym_label:
+ other: Správa synonym štítků
+ email:
+ other: Email
+ e_mail:
+ other: Email
+ password:
+ other: Heslo
+ pass:
+ other: Heslo
+ old_pass:
+ other: Current password
+ original_text:
+ other: Tento příspěvek
+ email_or_password_wrong_error:
+ other: Email a heslo nesouhlasí.
+ error:
+ common:
+ invalid_url:
+ other: Neplatná URL.
+ status_invalid:
+ other: Neplatný stav.
+ password:
+ space_invalid:
+ other: Heslo nesmí obsahovat mezery.
+ admin:
+ cannot_update_their_password:
+ other: Nemůžete změnit své heslo.
+ cannot_edit_their_profile:
+ other: Nemůžete upravovat svůj profil.
+ cannot_modify_self_status:
+ other: Nemůžete změnit svůj stav.
+ email_or_password_wrong:
+ other: Email a heslo nesouhlasí.
+ answer:
+ not_found:
+ other: Odpověď nebyla nalezena.
+ cannot_deleted:
+ other: Nemáte právo mazat.
+ cannot_update:
+ other: Nemáte právo aktualizovat.
+ question_closed_cannot_add:
+ other: Dotazy jsou uzavřené a není možno je přidávat.
+ content_cannot_empty:
+ other: Answer content cannot be empty.
+ comment:
+ edit_without_permission:
+ other: Nejsou povoleny úpravy komentáře.
+ not_found:
+ other: Komentář nebyl nalezen.
+ cannot_edit_after_deadline:
+ other: Tento komentář byl pro úpravy příliš dlouhý.
+ content_cannot_empty:
+ other: Comment content cannot be empty.
+ email:
+ duplicate:
+ other: Email už existuje.
+ need_to_be_verified:
+ other: Email musí být ověřen.
+ verify_url_expired:
+ other: Platnost ověřovacího URL vypršela, pošlete si ověřovací email znovu.
+ illegal_email_domain_error:
+ other: Email z této domény není povolen. Použijte jinou doménu.
+ lang:
+ not_found:
+ other: Jazykový soubor nenalezen.
+ object:
+ captcha_verification_failed:
+ other: Nesprávně vyplněná Captcha.
+ disallow_follow:
+ other: Nemáte oprávnění sledovat.
+ disallow_vote:
+ other: Nemáte oprávnění hlasovat.
+ disallow_vote_your_self:
+ other: Nemůžete hlasovat pro svůj vlastní příspěvek.
+ not_found:
+ other: Objekt nenalezen.
+ verification_failed:
+ other: Ověření se nezdařilo.
+ email_or_password_incorrect:
+ other: Email a heslo nesouhlasí.
+ old_password_verification_failed:
+ other: Ověření starého hesla selhalo
+ new_password_same_as_previous_setting:
+ other: Nové heslo je stejné jako předchozí.
+ already_deleted:
+ other: Tento příspěvek byl odstraněn.
+ meta:
+ object_not_found:
+ other: Meta objekt nenalezen
+ question:
+ already_deleted:
+ other: Tento příspěvek byl odstraněn.
+ under_review:
+ other: Váš příspěvek čeká na kontrolu. Bude viditelný po jeho schválení.
+ not_found:
+ other: Dotaz nenalezen.
+ cannot_deleted:
+ other: Nemáte oprávnění k mazání.
+ cannot_close:
+ other: Nemáte oprávnění k uzavření.
+ cannot_update:
+ other: Nemáte oprávnění pro aktualizaci.
+ content_cannot_empty:
+ other: Content cannot be empty.
+ rank:
+ fail_to_meet_the_condition:
+ other: Hodnost reputace nesplňuje podmínku.
+ vote_fail_to_meet_the_condition:
+ other: Děkujeme za zpětnou vazbu. Potřebujete alespoň úroveň {{.Rank}}, abyste mohli hlasovat.
+ no_enough_rank_to_operate:
+ other: Potřebujete alespoň úroveň {{.Rank}} k provedení této akce.
+ report:
+ handle_failed:
+ other: Report selhal.
+ not_found:
+ other: Report nebyl nalezen.
+ tag:
+ already_exist:
+ other: Štítek již existuje.
+ not_found:
+ other: Štítek nebyl nalezen.
+ recommend_tag_not_found:
+ other: Doporučený štítek nebyl nalezen.
+ recommend_tag_enter:
+ other: Zadejte prosím alespoň jeden povinný štítek.
+ not_contain_synonym_tags:
+ other: Nemělo by obsahovat synonyma štítků.
+ cannot_update:
+ other: Nemáte oprávnění pro aktualizaci.
+ is_used_cannot_delete:
+ other: Nemůžete odstranit štítek, který se používá.
+ cannot_set_synonym_as_itself:
+ other: Aktuální štítek nelze jako synonymum stejného štítku.
+ smtp:
+ config_from_name_cannot_be_email:
+ other: Jméno odesílatele nemůže být emailová adresa.
+ theme:
+ not_found:
+ other: Motiv nebyl nalezen.
+ revision:
+ review_underway:
+ other: V současné době nelze upravit, čeká na kontrolu.
+ no_permission:
+ other: Nemáte oprávnění k revizi.
+ user:
+ external_login_missing_user_id:
+ other: Platforma třetí strany neposkytuje unikátní UserID, takže se nemůžete přihlásit, kontaktujte prosím správce webových stránek.
+ external_login_unbinding_forbidden:
+ other: Před odebráním tohoto typu přihlášení nastavte přihlašovací heslo pro svůj účet.
+ email_or_password_wrong:
+ other:
+ other: Email a heslo nesouhlasí.
+ not_found:
+ other: Uživatel nebyl nalezen.
+ suspended:
+ other: Uživatelský účet byl pozastaven.
+ username_invalid:
+ other: Uživatelské jméno je neplatné.
+ username_duplicate:
+ other: Uživatelské jméno je již použito.
+ set_avatar:
+ other: Nastavení avataru se nezdařilo.
+ cannot_update_your_role:
+ other: Nemůžete upravovat svoji roli.
+ not_allowed_registration:
+ other: Registrace nejsou povolené.
+ not_allowed_login_via_password:
+ other: Přihlášení přes heslo není povolené.
+ access_denied:
+ other: Přístup zamítnut
+ page_access_denied:
+ other: Nemáte přístup k této stránce.
+ add_bulk_users_format_error:
+ other: "Chyba formátu pole {{.Field}} poblíž '{{.Content}}' na řádku {{.Line}}. {{.ExtraMessage}}"
+ add_bulk_users_amount_error:
+ other: "Počet uživatelů, které přidáte najednou, by měl být v rozsahu 1-{{.MaxAmount}}."
+ config:
+ read_config_failed:
+ other: Načtení konfigurace selhalo
+ database:
+ connection_failed:
+ other: Spojení s databází selhalo
+ create_table_failed:
+ other: Vytvoření tabulky selhalo
+ install:
+ create_config_failed:
+ other: Soubor config.yaml nelze vytvořit.
+ upload:
+ unsupported_file_format:
+ other: Nepodporovaný formát souboru.
+ site_info:
+ config_not_found:
+ other: Konfigurace webu nebyla nalezena.
+ badge:
+ object_not_found:
+ other: Objekt odznaku nebyl nalezen
+ reason:
+ spam:
+ name:
+ other: spam
+ desc:
+ other: Tento příspěvek je reklama nebo vandalismus. Není užitečný ani relevantní pro aktuální téma.
+ rude_or_abusive:
+ name:
+ other: hrubý nebo zneužívající
+ desc:
+ other: "Rozumný člověk by tento obsah považoval za nevhodný pro slušnou konverzaci."
+ a_duplicate:
+ name:
+ other: duplicita
+ desc:
+ other: Tento dotaz byl položen dříve a již má odpověď.
+ placeholder:
+ other: Zadejte existující odkaz na dotaz
+ not_a_answer:
+ name:
+ other: není odpověď
+ desc:
+ other: "Toto bylo zveřejněno jako odpověď, ale nesnaží se odpovědět na dotaz. Měla by to být úprava, komentář, nebo úplně jiný dotaz."
+ no_longer_needed:
+ name:
+ other: již není potřeba
+ desc:
+ other: Tento komentář je zastaralý, konverzační nebo není relevantní pro tento příspěvek.
+ something:
+ name:
+ other: jiný důvod
+ desc:
+ other: Tento příspěvek vyžaduje pozornost moderátorů z jiného důvodu, který není uveden výše.
+ placeholder:
+ other: Dejte nám vědět konkrétně, v čem je problém
+ community_specific:
+ name:
+ other: důvod specifický pro komunitu
+ desc:
+ other: Tento dotaz nesplňuje pravidla komunity.
+ not_clarity:
+ name:
+ other: vyžaduje detaily nebo upřesnění
+ desc:
+ other: Tento dotaz v současné době obsahuje více otázek. Měl by se zaměřit pouze na jeden problém.
+ looks_ok:
+ name:
+ other: vypadá v pořádku
+ desc:
+ other: Tento příspěvek je dobrý tak jak je, nemá nízkou kvalitu.
+ needs_edit:
+ name:
+ other: potřebuje úpravu, kterou jsem udělal(a)
+ desc:
+ other: Zlepšete a opravte problémy s tímto příspěvkem.
+ needs_close:
+ name:
+ other: potřebuje zavřít
+ desc:
+ other: Na uzavřený dotaz není možné odpovídat, ale stále může být upraven a je možné pro něj hlasovat a komentovat jej.
+ needs_delete:
+ name:
+ other: potřebuje smazat
+ desc:
+ other: Tento příspěvek bude odstraněn.
+ question:
+ close:
+ duplicate:
+ name:
+ other: spam
+ desc:
+ other: Tento dotaz byl položena dříve a již má odpověď.
+ guideline:
+ name:
+ other: důvod specifický pro komunitu
+ desc:
+ other: Tento dotaz nesplňuje pravidla komunity.
+ multiple:
+ name:
+ other: vyžaduje detaily nebo upřesnění
+ desc:
+ other: Tento dotaz v současné době obsahuje více otázek. Měla by se zaměřit pouze na jeden problém.
+ other:
+ name:
+ other: jiný důvod
+ desc:
+ other: Tento příspěvek vyžaduje pozornost moderátorů z jiného důvodu, který není uveden výše.
+ operation_type:
+ asked:
+ other: dotázáno
+ answered:
+ other: zodpovězeno
+ modified:
+ other: upraveno
+ deleted_title:
+ other: Smazat dotaz
+ questions_title:
+ other: Dotazy
+ tag:
+ tags_title:
+ other: Štítky
+ no_description:
+ other: Štítek nemá žádný popis.
+ notification:
+ action:
+ update_question:
+ other: upravený dotaz
+ answer_the_question:
+ other: položil(a) dotaz
+ update_answer:
+ other: upravil(a) odpověď
+ accept_answer:
+ other: přijal(a) odpověď
+ comment_question:
+ other: okomentoval(a) dotaz
+ comment_answer:
+ other: okomentoval(a) odpověď
+ reply_to_you:
+ other: vám odpověděl(a)
+ mention_you:
+ other: vás zmínil(a)
+ your_question_is_closed:
+ other: Váš dotaz byl uzavřen
+ your_question_was_deleted:
+ other: Váš dotaz byl odstraněn
+ your_answer_was_deleted:
+ other: Vaše odpověď byla smazána
+ your_comment_was_deleted:
+ other: Váš komentář byl odstraněn
+ up_voted_question:
+ other: hlasoval(a) pro dotaz
+ down_voted_question:
+ other: hlasoval(a) proti dotazu
+ up_voted_answer:
+ other: hlasoval(a) pro odpověď
+ down_voted_answer:
+ other: hlasoval(a) proti odpovědi
+ up_voted_comment:
+ other: hlasoval(a) pro komentář
+ invited_you_to_answer:
+ other: vás pozval, abyste odpověděl(a)
+ earned_badge:
+ other: Získali jste odznak "{{.BadgeName}}"
+ email_tpl:
+ change_email:
+ title:
+ other: "[{{.SiteName}}] Potvrďte svůj nový email"
+ body:
+ other: "Confirm your new email address for {{.SiteName}} by clicking on the following link: \n{{.ChangeEmailUrl}}
\n\nIf you did not request this change, please ignore this email.
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ new_answer:
+ title:
+ other: "[{{.SiteName}}] {{.DisplayName}} odpověděl(a) na váš dotaz"
+ body:
+ other: "{{.QuestionTitle}}
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen.
\n\nUnsubscribe"
+ pass_reset:
+ title:
+ other: "[{{.SiteName }}] Obnova hesla"
+ body:
+ other: "Somebody asked to reset your password on {{.SiteName}}.
\n\nIf it was not you, you can safely ignore this email.
\n\nClick the following link to choose a new password: \n{{.PassResetUrl}}\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ register:
+ title:
+ other: "[{{.SiteName}}] Potvrďte svůj nový účet"
+ body:
+ other: "Welcome to {{.SiteName}}!
\n\nClick the following link to confirm and activate your new account: \n{{.RegisterUrl}}
\n\nIf the above link is not clickable, try copying and pasting it into the address bar of your web browser.\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ test:
+ title:
+ other: "[{{.SiteName}}] Zkušební email"
+ body:
+ other: "This is a test email.\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ action_activity_type:
+ upvote:
+ other: hlasovat pro
+ upvoted:
+ other: hlasováno pro
+ downvote:
+ other: hlasovat proti
+ downvoted:
+ other: hlasováno proti
+ accept:
+ other: přijmout
+ accepted:
+ other: přijato
+ edit:
+ other: upravit
+ review:
+ queued_post:
+ other: Příspěvek ve frontě
+ flagged_post:
+ other: Nahlášený příspěvek
+ suggested_post_edit:
+ other: Navrhované úpravy
+ reaction:
+ tooltip:
+ other: "{{ .Names }} a {{ .Count }} dalších..."
+ badge:
+ default_badges:
+ autobiographer:
+ name:
+ other: Životopisec
+ desc:
+ other: Profil vyplněn.
+ certified:
+ name:
+ other: Certifikovaný
+ desc:
+ other: Tutoriál pro nové uživatele dokončen.
+ editor:
+ name:
+ other: Editor
+ desc:
+ other: První úprava příspěvku.
+ first_flag:
+ name:
+ other: První nahlášení
+ desc:
+ other: První nahlášení příspěvku.
+ first_upvote:
+ name:
+ other: První hlas pro
+ desc:
+ other: První hlas pro příspěvek.
+ first_link:
+ name:
+ other: První odkaz
+ desc:
+ other: First added a link to another post.
+ first_reaction:
+ name:
+ other: First Reaction
+ desc:
+ other: First reacted to the post.
+ first_share:
+ name:
+ other: První sdílení
+ desc:
+ other: První sdílení příspěvku.
+ scholar:
+ name:
+ other: Scholar
+ desc:
+ other: Asked a question and accepted an answer.
+ commentator:
+ name:
+ other: Commentator
+ desc:
+ other: Napište 5 komentářů.
+ new_user_of_the_month:
+ name:
+ other: Nový uživatel měsíce
+ desc:
+ other: Výjimečný přínos ve svém prvním měsíci na stránce.
+ read_guidelines:
+ name:
+ other: Přečíst pravidla
+ desc:
+ other: Přečtěte si [pravidla komunity].
+ reader:
+ name:
+ other: Čtenář
+ desc:
+ other: Přečtěte si všechny odpovědi v tématu s více než 10 odpověďmi.
+ welcome:
+ name:
+ other: Vítejte
+ desc:
+ other: Obdržel(a) hlas.
+ nice_share:
+ name:
+ other: Povedené sdílení
+ desc:
+ other: Sdílel(a) příspěvek s 25 unikátními návštěvníky.
+ good_share:
+ name:
+ other: Dobré sdílení
+ desc:
+ other: Sdílel(a) příspěvek s 300 unikátními návštěvníky.
+ great_share:
+ name:
+ other: Skvělé sdílení
+ desc:
+ other: Sdílel(a) příspěvek s 1000 unikátními návštěvníky.
+ out_of_love:
+ name:
+ other: Optimista
+ desc:
+ other: Využito 50 hlasů pro za den.
+ higher_love:
+ name:
+ other: Vytrvalý optimista
+ desc:
+ other: 5 krát využito 50 hlasů pro za den.
+ crazy_in_love:
+ name:
+ other: Bláznivý optimista
+ desc:
+ other: 20 krát využito 50 hlasů pro za den.
+ promoter:
+ name:
+ other: Promotér
+ desc:
+ other: Pozval(a) uživatele.
+ campaigner:
+ name:
+ other: Campaigner
+ desc:
+ other: Pozval(a) 3 uživatele.
+ champion:
+ name:
+ other: Champion
+ desc:
+ other: Invited 5 members.
+ thank_you:
+ name:
+ other: Thank You
+ desc:
+ other: Has 20 up voted posts and gave 10 up votes.
+ gives_back:
+ name:
+ other: Gives Back
+ desc:
+ other: Has 100 up voted posts and gave 100 up votes.
+ empathetic:
+ name:
+ other: Empathetic
+ desc:
+ other: Has 500 up voted posts and gave 1000 up votes.
+ enthusiast:
+ name:
+ other: Enthusiast
+ desc:
+ other: Visited 10 consecutive days.
+ aficionado:
+ name:
+ other: Aficionado
+ desc:
+ other: Visited 100 consecutive days.
+ devotee:
+ name:
+ other: Devotee
+ desc:
+ other: Visited 365 consecutive days.
+ anniversary:
+ name:
+ other: Anniversary
+ desc:
+ other: Active member for a year, posted at least once.
+ appreciated:
+ name:
+ other: Appreciated
+ desc:
+ other: Received 1 up vote on 20 posts.
+ respected:
+ name:
+ other: Respected
+ desc:
+ other: Received 2 up votes on 100 posts.
+ admired:
+ name:
+ other: Admired
+ desc:
+ other: Received 5 up votes on 300 posts.
+ solved:
+ name:
+ other: Solved
+ desc:
+ other: Have an answer be accepted.
+ guidance_counsellor:
+ name:
+ other: Guidance Counsellor
+ desc:
+ other: Have 10 answers be accepted.
+ know_it_all:
+ name:
+ other: Know-it-All
+ desc:
+ other: Have 50 answers be accepted.
+ solution_institution:
+ name:
+ other: Solution Institution
+ desc:
+ other: Have 150 answers be accepted.
+ nice_answer:
+ name:
+ other: Nice Answer
+ desc:
+ other: Answer score of 10 or more.
+ good_answer:
+ name:
+ other: Good Answer
+ desc:
+ other: Answer score of 25 or more.
+ great_answer:
+ name:
+ other: Great Answer
+ desc:
+ other: Answer score of 50 or more.
+ nice_question:
+ name:
+ other: Nice Question
+ desc:
+ other: Question score of 10 or more.
+ good_question:
+ name:
+ other: Good Question
+ desc:
+ other: Question score of 25 or more.
+ great_question:
+ name:
+ other: Great Question
+ desc:
+ other: Question score of 50 or more.
+ popular_question:
+ name:
+ other: Popular Question
+ desc:
+ other: Question with 500 views.
+ notable_question:
+ name:
+ other: Notable Question
+ desc:
+ other: Question with 1,000 views.
+ famous_question:
+ name:
+ other: Famous Question
+ desc:
+ other: Question with 5,000 views.
+ popular_link:
+ name:
+ other: Popular Link
+ desc:
+ other: Posted an external link with 50 clicks.
+ hot_link:
+ name:
+ other: Hot Link
+ desc:
+ other: Posted an external link with 300 clicks.
+ famous_link:
+ name:
+ other: Famous Link
+ desc:
+ other: Posted an external link with 100 clicks.
+ default_badge_groups:
+ getting_started:
+ name:
+ other: Getting Started
+ community:
+ name:
+ other: Community
+ posting:
+ name:
+ other: Posting
+# The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: How to Format
+ desc: >-
+
mention a post: #post_id
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Prev
+ next: Next
+ page_title:
+ question: Question
+ questions: Questions
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ create_tag: Create Tag
+ edit_tag: Edit Tag
+ ask_a_question: Add Question
+ edit_question: Edit Question
+ edit_answer: Edit Answer
+ search: Search
+ posts_containing: Posts containing
+ settings: Settings
+ notifications: Notifications
+ login: Log In
+ sign_up: Sign Up
+ account_recovery: Account Recovery
+ account_activation: Account Activation
+ confirm_email: Confirm Email
+ account_suspended: Account Suspended
+ admin: Admin
+ change_email: Modify Email
+ install: Answer Installation
+ upgrade: Answer Upgrade
+ maintenance: Website Maintenance
+ users: Users
+ oauth_callback: Processing
+ http_404: HTTP Error 404
+ http_50X: HTTP Error 500
+ http_403: HTTP Error 403
+ logout: Log Out
+ notifications:
+ title: Notifications
+ inbox: Inbox
+ achievement: Achievements
+ new_alerts: New alerts
+ all_read: Mark all as read
+ show_more: Show more
+ someone: Someone
+ inbox_type:
+ all: All
+ posts: Posts
+ invites: Invites
+ votes: Votes
+ answer: Answer
+ question: Question
+ badge_award: Badge
+ suspended:
+ title: Your Account has been Suspended
+ until_time: "Your account was suspended until {{ time }}."
+ forever: This user was suspended forever.
+ end: You don't meet a community guideline.
+ contact_us: Contact us
+ editor:
+ blockquote:
+ text: Blockquote
+ bold:
+ text: Strong
+ chart:
+ text: Chart
+ flow_chart: Flow chart
+ sequence_diagram: Sequence diagram
+ class_diagram: Class diagram
+ state_diagram: State diagram
+ entity_relationship_diagram: Entity relationship diagram
+ user_defined_diagram: User defined diagram
+ gantt_chart: Gantt chart
+ pie_chart: Pie chart
+ code:
+ text: Code Sample
+ add_code: Add code sample
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code cannot be empty.
+ language:
+ label: Language
+ placeholder: Automatic detection
+ btn_cancel: Cancel
+ btn_confirm: Add
+ formula:
+ text: Formula
+ options:
+ inline: Inline formula
+ block: Block formula
+ heading:
+ text: Heading
+ options:
+ h1: Heading 1
+ h2: Heading 2
+ h3: Heading 3
+ h4: Heading 4
+ h5: Heading 5
+ h6: Heading 6
+ help:
+ text: Help
+ hr:
+ text: Horizontal rule
+ image:
+ text: Image
+ add_image: Add image
+ tab_image: Upload image
+ form_image:
+ fields:
+ file:
+ label: Image file
+ btn: Select image
+ msg:
+ empty: File cannot be empty.
+ only_image: Only image files are allowed.
+ max_size: File size cannot exceed {{size}} MB.
+ desc:
+ label: Description
+ tab_url: Image URL
+ form_url:
+ fields:
+ url:
+ label: Image URL
+ msg:
+ empty: Image URL cannot be empty.
+ name:
+ label: Description
+ btn_cancel: Cancel
+ btn_confirm: Add
+ uploading: Uploading
+ indent:
+ text: Indent
+ outdent:
+ text: Outdent
+ italic:
+ text: Emphasis
+ link:
+ text: Hyperlink
+ add_link: Add hyperlink
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL cannot be empty.
+ name:
+ label: Description
+ btn_cancel: Cancel
+ btn_confirm: Add
+ ordered_list:
+ text: Numbered list
+ unordered_list:
+ text: Bulleted list
+ table:
+ text: Table
+ heading: Heading
+ cell: Cell
+ file:
+ text: Attach files
+ not_supported: "Don’t support that file type. Try again with {{file_type}}."
+ max_size: "Attach files size cannot exceed {{size}} MB."
+ close_modal:
+ title: I am closing this post as...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ report_modal:
+ flag_title: I am flagging to report this post as...
+ close_title: I am closing this post as...
+ review_question_title: Review question
+ review_answer_title: Review answer
+ review_comment_title: Review comment
+ btn_cancel: Cancel
+ btn_submit: Submit
+ remark:
+ empty: Cannot be empty.
+ msg:
+ empty: Please select a reason.
+ not_a_url: URL format is incorrect.
+ url_not_match: URL origin does not match the current website.
+ tag_modal:
+ title: Create new tag
+ form:
+ fields:
+ display_name:
+ label: Display name
+ msg:
+ empty: Display name cannot be empty.
+ range: Display name up to 35 characters.
+ slug_name:
+ label: URL slug
+ desc: URL slug up to 35 characters.
+ msg:
+ empty: URL slug cannot be empty.
+ range: URL slug up to 35 characters.
+ character: URL slug contains unallowed character set.
+ desc:
+ label: Description
+ revision:
+ label: Revision
+ edit_summary:
+ label: Edit summary
+ placeholder: >-
+ Briefly explain your changes (corrected spelling, fixed grammar, improved formatting)
+ btn_cancel: Cancel
+ btn_submit: Submit
+ btn_post: Post new tag
+ tag_info:
+ created_at: Created
+ edited_at: Edited
+ history: History
+ synonyms:
+ title: Synonyms
+ text: The following tags will be remapped to
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ tip_with_posts: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ characters: content must be at least 6 characters in length.
+ tips:
+ header_1: Thanks for your answer
+ li1_1: Please be sure to answer the question. Provide details and share your research.
+ li1_2: Back up any statements you make with references or personal experience.
+ header_2: But avoid ...
+ li2_1: Asking for help, seeking clarification, or responding to other answers.
+ reopen:
+ confirm_btn: Reopen
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ list:
+ confirm_btn: List
+ title: List this post
+ content: Are you sure you want to list?
+ unlist:
+ confirm_btn: Unlist
+ title: Unlist this post
+ content: Are you sure you want to unlist?
+ pin:
+ title: Pin this post
+ content: Are you sure you wish to pinned globally? This post will appear at the top of all post lists.
+ confirm_btn: Pin
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_answer_deleted: This answer has been deleted
+ undelete_title: Undelete this post
+ undelete_desc: Are you sure you wish to undelete?
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ edit: Edit
+ save: Save
+ delete: Delete
+ undelete: Undelete
+ list: List
+ unlist: Unlist
+ unlisted: Unlisted
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ create: Create
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ discard_draft: Discard draft
+ pinned: Pinned
+ all: All
+ question: Question
+ answer: Answer
+ comment: Comment
+ refresh: Refresh
+ resend: Resend
+ deactivate: Deactivate
+ active: Active
+ suspend: Suspend
+ unsuspend: Unsuspend
+ close: Close
+ reopen: Reopen
+ ok: OK
+ light: Light
+ dark: Dark
+ system_setting: System setting
+ default: Default
+ reset: Reset
+ tag: Tag
+ post_lowercase: post
+ filter: Filter
+ ignore: Ignore
+ submit: Submit
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ deleted_permanently: Deleted permanently
+ pending: Pending
+ more: More
+ view: View
+ card: Card
+ compact: Compact
+ display_below: Display below
+ always_display: Always display
+ or: or
+ back_sites: Back to sites
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post.
+ modal_confirm:
+ title: Error...
+ delete_permanently:
+ title: Delete permanently
+ content: Are you sure you want to delete permanently?
+ account_result:
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ oops: Oops!
+ invalid: The link you used no longer works.
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ frequent: Frequent
+ recommend: Recommend
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ badges: Badges
+ newest: Newest
+ score: Score
+ edit_profile: Edit profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ comma: ","
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ content_empty: No posts found.
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ downvoted: downvoted
+ mod_short: MOD
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ recent_badges: Recent Badges
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please choose a language
+ db_type:
+ label: Database engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database host
+ placeholder: "db:3306"
+ msg: Database host cannot be empty.
+ db_name:
+ label: Database name
+ placeholder: answer
+ msg: Database name cannot be empty.
+ db_file:
+ label: Database file
+ placeholder: /data/answer.db
+ msg: Database file cannot be empty.
+ ssl_enabled:
+ label: Enable SSL
+ ssl_enabled_on:
+ label: On
+ ssl_enabled_off:
+ label: Off
+ ssl_mode:
+ label: SSL Mode
+ ssl_root_cert:
+ placeholder: sslrootcert file path
+ msg: Path to sslrootcert file cannot be empty
+ ssl_cert:
+ placeholder: sslcert file path
+ msg: Path to sslcert file cannot be empty
+ ssl_key:
+ placeholder: sslkey file path
+ msg: Path to sslkey file cannot be empty
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: After you've done that, click "Next" button.
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site name
+ msg: Site name cannot be empty.
+ msg_max_length: Site name must be at maximum 30 characters in length.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ max_length: Site URL must be at maximum 512 characters in length.
+ contact_email:
+ label: Contact email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact email cannot be empty.
+ incorrect: Contact email incorrect format.
+ login_required:
+ label: Private
+ switch: Login required
+ text: Only logged in users can access this community.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ character: 'Must use the character set "a-z", "A-Z", "0-9", " - . _"'
+ msg_max_length: Name must be between 2 to 30 characters in length.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ msg_min_length: Password must be at least 8 characters in length.
+ msg_max_length: Password must be at maximum 32 characters in length.
+ admin_confirm_password:
+ label: "Confirm Password"
+ text: "Please re-enter your password to confirm."
+ msg: "Confirm password does not match."
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ counts:
+ views: views
+ votes: votes
+ answers: answers
+ accepted: Accepted
+ page_error:
+ http_error: HTTP Error {{ code }}
+ desc_403: You don't have permission to access this page.
+ desc_404: Unfortunately, this page doesn't exist.
+ desc_50X: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ badges: Badges
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css_html: CSS/HTML
+ login: Login
+ privileges: Privileges
+ plugins: Plugins
+ installed_plugins: Installed Plugins
+ website_welcome: Welcome to {{site_name}}
+ user_center:
+ login: Login
+ qrcode_login_tip: Please use {{ agentName }} to scan the QR code and log in.
+ login_failed_email_tip: Login failed, please allow this app to access your email information before try again.
+ badges:
+ modal:
+ title: Congratulations
+ content: You've earned a new badge.
+ close: Close
+ confirm: View badges
+ title: Badges
+ awarded: Awarded
+ earned_×: Earned ×{{ number }}
+ ×_awarded: "{{ number }} awarded"
+ can_earn_multiple: You can earn this multiple times.
+ earned: Earned
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site statistics
+ questions: "Questions:"
+ resolved: "Resolved:"
+ unanswered: "Unanswered:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ users: "Users:"
+ flags: "Flags:"
+ reviews: "Reviews:"
+ site_health: Site health
+ version: "Version:"
+ https: "HTTPS:"
+ upload_folder: "Upload folder:"
+ run_mode: "Running mode:"
+ private: Private
+ public: Public
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System info
+ go_version: "Go version:"
+ database: "Database:"
+ database_size: "Database size:"
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ links: Links
+ plugins: Plugins
+ github: GitHub
+ blog: Blog
+ contact: Contact
+ forum: Forum
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ writable: Writable
+ not_writable: Not writable
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ flagged_type: Flagged {{ type }}
+ created: Created
+ action: Action
+ review: Review
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ edit_profile_modal:
+ title: Edit profile
+ form:
+ fields:
+ display_name:
+ label: Display name
+ msg_range: Display name up to 30 characters.
+ username:
+ label: Username
+ msg_range: Username up to 30 characters.
+ email:
+ label: Email
+ msg_invalid: Invalid Email Address.
+ edit_success: Edited successfully
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ users:
+ label: Bulk add user
+ placeholder: "John Smith, john@example.com, BUSYopr2\nAlice, alice@example.com, fpDntV8q"
+ text: Separate “name, email, password” with commas. One user per line.
+ msg: "Please enter the user's email, one per line."
+ display_name:
+ label: Display name
+ msg: Display name must be 2-30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ more: More
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ edit_profile: Edit profile
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ deactivate_user:
+ title: Deactivate user
+ content: An inactive user must re-validate their email.
+ delete_user:
+ title: Delete this user
+ content: Are you sure you want to delete this user? This is permanent!
+ remove: Remove their content
+ label: Remove all questions, answers, comments, etc.
+ text: Don’t check this if you wish to only delete the user’s account.
+ suspend_user:
+ title: Suspend this user
+ content: A suspended user can't log in.
+ questions:
+ page_title: Questions
+ unlisted: Unlisted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ pending: Pending
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short site description
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site description
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ check_update:
+ label: Software updates
+ text: Automatically check for updates
+ interface:
+ page_title: Interface
+ language:
+ label: Interface language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ tls: TLS
+ none: None
+ smtp_port:
+ label: SMTP port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test email recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile logo
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the "logo" setting will be used.
+ square_icon:
+ label: Square icon
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, "square icon" will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ external_content_display:
+ label: External content
+ text: "Content includes images, videos, and media embedded from external websites."
+ always_display: Always display external content
+ ask_before_display: Ask before displaying external content
+ write:
+ page_title: Write
+ restrict_answer:
+ title: Answer write
+ label: Každý uživatel může napsat pouze jednu odpověď na stejný dotaz
+ text: "Turn off to allow users to write multiple answers to the same question, which may cause answers to be unfocused."
+ recommend_tags:
+ label: Recommend tags
+ text: "Recommend tags will show in the dropdown list by default."
+ msg:
+ contain_reserved: "recommended tags cannot contain reserved tags"
+ required_tag:
+ title: Set required tags
+ label: Set “Recommend tags” as required tags
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved tags
+ text: "Reserved tags can only be used by moderator."
+ image_size:
+ label: Max image size (MB)
+ text: "The maximum image upload size."
+ attachment_size:
+ label: Max attachment size (MB)
+ text: "The maximum attachment files upload size."
+ image_megapixels:
+ label: Max image megapixels
+ text: "Maximum number of megapixels allowed for an image."
+ image_extensions:
+ label: Authorized image extensions
+ text: "A list of file extensions allowed for image display, separate with commas."
+ attachment_extensions:
+ label: Authorized attachment extensions
+ text: "A list of file extensions allowed for upload, separate with commas. WARNING: Allowing uploads may cause security issues."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ color_scheme:
+ label: Color scheme
+ navbar_style:
+ label: Navbar style
+ primary_color:
+ label: Primary color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: >
+
+ head:
+ label: Head
+ text: >
+
+ header:
+ label: Header
+ text: >
+
+ footer:
+ label: Footer
+ text: This will insert before </body>.
+ sidebar:
+ label: Sidebar
+ text: This will insert in sidebar.
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ email_registration:
+ title: Email registration
+ label: Allow email registration
+ text: Turn off to prevent anyone creating new account through email.
+ allowed_email_domains:
+ title: Allowed email domains
+ text: Email domains that users must register accounts with. One domain per line. Ignored when empty.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ password_login:
+ title: Password login
+ label: Allow email and password login
+ text: "WARNING: If turn off, you may be unable to log in if you have not previously configured other login method."
+ installed_plugins:
+ title: Installed Plugins
+ plugin_link: Plugins extend and expand the functionality. You may find plugins in the <1>Plugin Repository1>.
+ filter:
+ all: All
+ active: Active
+ inactive: Inactive
+ outdated: Outdated
+ plugins:
+ label: Plugins
+ text: Select an existing plugin.
+ name: Name
+ version: Version
+ status: Status
+ action: Action
+ deactivate: Deactivate
+ activate: Activate
+ settings: Settings
+ settings_users:
+ title: Users
+ avatar:
+ label: Default avatar
+ text: For users without a custom avatar of their own.
+ gravatar_base_url:
+ label: URL základny Gravatar
+ text: URL of the Gravatar provider's API base. Ignored when empty.
+ profile_editable:
+ title: Profile editable
+ allow_update_display_name:
+ label: Allow users to change their display name
+ allow_update_username:
+ label: Allow users to change their username
+ allow_update_avatar:
+ label: Allow users to change their profile image
+ allow_update_bio:
+ label: Allow users to change their about me
+ allow_update_website:
+ label: Allow users to change their website
+ allow_update_location:
+ label: Allow users to change their location
+ privilege:
+ title: Privileges
+ level:
+ label: Reputation required level
+ text: Choose the reputation required for the privileges
+ msg:
+ should_be_number: the input should be number
+ number_larger_1: number should be equal or larger than 1
+ badges:
+ action: Action
+ active: Active
+ activate: Activate
+ all: All
+ awards: Awards
+ deactivate: Deactivate
+ filter:
+ placeholder: Filter by name, badge:id
+ group: Group
+ inactive: Inactive
+ name: Name
+ show_logs: Show logs
+ status: Status
+ title: Badges
+ form:
+ optional: (optional)
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ select: Select
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ approve_revision_tip: Do you approve this revision?
+ approve_flag_tip: Do you approve this flag?
+ approve_post_tip: Do you approve this post?
+ approve_user_tip: Do you approve this user?
+ suggest_edits: Suggested edits
+ flag_post: Flag post
+ flag_user: Flag user
+ queued_post: Queued post
+ queued_user: Queued user
+ filter_label: Type
+ reputation: reputation
+ flag_post_type: Flagged this post as {{ type }}.
+ flag_user_type: Flagged this user as {{ type }}.
+ edit_post: Edit post
+ list_post: List post
+ unlist_post: Unlist post
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ pin: pinned
+ unpin: unpinned
+ show: listed
+ hide: unlisted
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores this week
+ users_with_the_most_vote: Users who voted the most this week
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
+ prompt:
+ leave_page: Are you sure you want to leave the page?
+ changes_not_save: Your changes may not be saved.
+ draft:
+ discard_confirm: Are you sure you want to discard your draft?
+ messages:
+ post_deleted: This post has been deleted.
+ post_cancel_deleted: This post has been undeleted.
+ post_pin: This post has been pinned.
+ post_unpin: This post has been unpinned.
+ post_hide_list: This post has been hidden from list.
+ post_show_list: This post has been shown to list.
+ post_reopen: This post has been reopened.
+ post_list: This post has been listed.
+ post_unlist: This post has been unlisted.
+ post_pending: Your post is awaiting review. This is a preview, it will be visible after it has been approved.
+ post_closed: This post has been closed.
+ answer_deleted: This answer has been deleted.
+ answer_cancel_deleted: This answer has been undeleted.
+ change_user_role: This user's role has been changed.
+ user_inactive: This user is already inactive.
+ user_normal: This user is already normal.
+ user_suspended: This user has been suspended.
+ user_deleted: This user has been deleted.
+ badge_activated: This badge has been activated.
+ badge_inactivated: This badge has been inactivated.
+ users_deleted: These users have been deleted.
+ posts_deleted: These questions have been deleted.
+ answers_deleted: These answers have been deleted.
+ copy: Copy to clipboard
+ copied: Copied
+ external_content_warning: External images/media are not displayed.
+
+
diff --git a/answer-data/i18n/cy_GB.yaml b/answer-data/i18n/cy_GB.yaml
new file mode 100644
index 0000000..09987e2
--- /dev/null
+++ b/answer-data/i18n/cy_GB.yaml
@@ -0,0 +1,2319 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: Llwyddiant.
+ unknown:
+ other: Gwall anhysbys.
+ request_format_error:
+ other: Nid yw fformat y cais yn ddilys.
+ unauthorized_error:
+ other: Anawdurdodedig.
+ database_error:
+ other: Gwall gweinydd data.
+ forbidden_error:
+ other: Forbidden.
+ duplicate_request_error:
+ other: Duplicate submission.
+ action:
+ report:
+ other: Tynnu sylw
+ edit:
+ other: Golygu
+ delete:
+ other: Dileu
+ close:
+ other: Cau
+ reopen:
+ other: Ailagor
+ forbidden_error:
+ other: Forbidden.
+ pin:
+ other: Pinio
+ hide:
+ other: Dad-restru
+ unpin:
+ other: Dadbinio
+ show:
+ other: Rhestr
+ invite_someone_to_answer:
+ other: Edit
+ undelete:
+ other: Undelete
+ merge:
+ other: Merge
+ role:
+ name:
+ user:
+ other: Defnyddiwr
+ admin:
+ other: Gweinyddwr
+ moderator:
+ other: Cymedrolwr
+ description:
+ user:
+ other: Diofyn heb unrhyw fynediad arbennig.
+ admin:
+ other: Bod â'r pŵer llawn i gael mynediad i'r safle.
+ moderator:
+ other: Mae ganddo fynediad i bob post ac eithrio gosodiadau gweinyddol.
+ privilege:
+ level_1:
+ description:
+ other: Level 1 (less reputation required for private team, group)
+ level_2:
+ description:
+ other: Level 2 (low reputation required for startup community)
+ level_3:
+ description:
+ other: Level 3 (high reputation required for mature community)
+ level_custom:
+ description:
+ other: Custom Level
+ rank_question_add_label:
+ other: Ask question
+ rank_answer_add_label:
+ other: Write answer
+ rank_comment_add_label:
+ other: Write comment
+ rank_report_add_label:
+ other: Flag
+ rank_comment_vote_up_label:
+ other: Upvote comment
+ rank_link_url_limit_label:
+ other: Post more than 2 links at a time
+ rank_question_vote_up_label:
+ other: Upvote question
+ rank_answer_vote_up_label:
+ other: Upvote answer
+ rank_question_vote_down_label:
+ other: Downvote question
+ rank_answer_vote_down_label:
+ other: Downvote answer
+ rank_invite_someone_to_answer_label:
+ other: Invite someone to answer
+ rank_tag_add_label:
+ other: Create new tag
+ rank_tag_edit_label:
+ other: Edit tag description (need to review)
+ rank_question_edit_label:
+ other: Edit other's question (need to review)
+ rank_answer_edit_label:
+ other: Edit other's answer (need to review)
+ rank_question_edit_without_review_label:
+ other: Edit other's question without review
+ rank_answer_edit_without_review_label:
+ other: Edit other's answer without review
+ rank_question_audit_label:
+ other: Review question edits
+ rank_answer_audit_label:
+ other: Review answer edits
+ rank_tag_audit_label:
+ other: Review tag edits
+ rank_tag_edit_without_review_label:
+ other: Edit tag description without review
+ rank_tag_synonym_label:
+ other: Manage tag synonyms
+ email:
+ other: Ebost
+ e_mail:
+ other: Email
+ password:
+ other: Cyfrinair
+ pass:
+ other: Password
+ old_pass:
+ other: Current password
+ original_text:
+ other: This post
+ email_or_password_wrong_error:
+ other: Nid yw e-bost a chyfrinair yn cyfateb.
+ error:
+ common:
+ invalid_url:
+ other: Invalid URL.
+ status_invalid:
+ other: Invalid status.
+ password:
+ space_invalid:
+ other: Password cannot contain spaces.
+ admin:
+ cannot_update_their_password:
+ other: Ni allwch addasu eich cyfrinair.
+ cannot_edit_their_profile:
+ other: You cannot modify your profile.
+ cannot_modify_self_status:
+ other: Ni allwch addasu eich statws.
+ email_or_password_wrong:
+ other: Nid yw e-bost a chyfrinair yn cyfateb.
+ answer:
+ not_found:
+ other: Ni cheir yr ateb.
+ cannot_deleted:
+ other: Dim caniatâd i ddileu.
+ cannot_update:
+ other: Dim caniatâd i ddiweddaru.
+ question_closed_cannot_add:
+ other: Mae cwestiynau ar gau ac ni ellir eu hychwanegu.
+ content_cannot_empty:
+ other: Answer content cannot be empty.
+ comment:
+ edit_without_permission:
+ other: Nid oes modd golygu sylwadau.
+ not_found:
+ other: Sylw heb ei ganfod.
+ cannot_edit_after_deadline:
+ other: Mae'r amser sylwadau wedi bod yn rhy hir i'w addasu.
+ content_cannot_empty:
+ other: Comment content cannot be empty.
+ email:
+ duplicate:
+ other: E-bost yn bodoli eisoes.
+ need_to_be_verified:
+ other: Dylid gwirio e-bost.
+ verify_url_expired:
+ other: Mae'r URL wedi'i wirio gan e-bost wedi dod i ben, anfonwch yr e-bost eto.
+ illegal_email_domain_error:
+ other: Email is not allowed from that email domain. Please use another one.
+ lang:
+ not_found:
+ other: Ffeil iaith heb ei chanfod.
+ object:
+ captcha_verification_failed:
+ other: Captcha anghywir.
+ disallow_follow:
+ other: Ni chaniateir i chi ddilyn.
+ disallow_vote:
+ other: Ni chaniateir i chi pleidleisio.
+ disallow_vote_your_self:
+ other: Ni allwch bleidleisio dros eich post eich hun.
+ not_found:
+ other: Heb ganfod y gwrthrych.
+ verification_failed:
+ other: Methodd y dilysu.
+ email_or_password_incorrect:
+ other: Nid yw e-bost a chyfrinair yn cyfateb.
+ old_password_verification_failed:
+ other: Methodd yr hen ddilysiad cyfrinair
+ new_password_same_as_previous_setting:
+ other: Mae'r cyfrinair newydd yr un fath â'r un blaenorol.
+ already_deleted:
+ other: This post has been deleted.
+ meta:
+ object_not_found:
+ other: Meta object not found
+ question:
+ already_deleted:
+ other: Mae'r postiad hwn wedi'i ddileu.
+ under_review:
+ other: Your post is awaiting review. It will be visible after it has been approved.
+ not_found:
+ other: Cwestiwn heb ei ganfod.
+ cannot_deleted:
+ other: Dim caniatâd i ddileu.
+ cannot_close:
+ other: Dim caniatâd i cau.
+ cannot_update:
+ other: Dim caniatâd i ddiweddaru.
+ content_cannot_empty:
+ other: Content cannot be empty.
+ rank:
+ fail_to_meet_the_condition:
+ other: Reputation rank fail to meet the condition.
+ vote_fail_to_meet_the_condition:
+ other: Thanks for the feedback. You need at least {{.Rank}} reputation to cast a vote.
+ no_enough_rank_to_operate:
+ other: You need at least {{.Rank}} reputation to do this.
+ report:
+ handle_failed:
+ other: Methodd handlen yr adroddiad.
+ not_found:
+ other: Heb ganfod yr adroddiad.
+ tag:
+ already_exist:
+ other: Mae tag eisoes yn bodoli.
+ not_found:
+ other: Tag heb ei ddarganfod.
+ recommend_tag_not_found:
+ other: Recommend tag is not exist.
+ recommend_tag_enter:
+ other: Rhowch o leiaf un tag gofynnol.
+ not_contain_synonym_tags:
+ other: Ni ddylai gynnwys tagiau cyfystyr.
+ cannot_update:
+ other: Dim caniatâd i ddiweddaru.
+ is_used_cannot_delete:
+ other: You cannot delete a tag that is in use.
+ cannot_set_synonym_as_itself:
+ other: Ni allwch osod cyfystyr y tag cyfredol fel ei hun.
+ smtp:
+ config_from_name_cannot_be_email:
+ other: The from name cannot be a email address.
+ theme:
+ not_found:
+ other: Thema heb ei ddarganfod.
+ revision:
+ review_underway:
+ other: Methu â golygu ar hyn o bryd, mae fersiwn yn y ciw adolygu.
+ no_permission:
+ other: No permission to revise.
+ user:
+ external_login_missing_user_id:
+ other: The third-party platform does not provide a unique UserID, so you cannot login, please contact the website administrator.
+ external_login_unbinding_forbidden:
+ other: Please set a login password for your account before you remove this login.
+ email_or_password_wrong:
+ other:
+ other: Nid yw e-bost a chyfrinair yn cyfateb.
+ not_found:
+ other: Defnyddwr heb ei ddarganfod.
+ suspended:
+ other: Mae'r defnyddiwr hwn wedi'i atal.
+ username_invalid:
+ other: Mae'r enw defnyddiwr yn annilys.
+ username_duplicate:
+ other: Cymerwyd yr enw defnyddiwr eisoes.
+ set_avatar:
+ other: Methodd set avatar.
+ cannot_update_your_role:
+ other: Ni allwch addasu eich rôl.
+ not_allowed_registration:
+ other: Currently the site is not open for registration.
+ not_allowed_login_via_password:
+ other: Currently the site is not allowed to login via password.
+ access_denied:
+ other: Access denied
+ page_access_denied:
+ other: You do not have access to this page.
+ add_bulk_users_format_error:
+ other: "Error {{.Field}} format near '{{.Content}}' at line {{.Line}}. {{.ExtraMessage}}"
+ add_bulk_users_amount_error:
+ other: "The number of users you add at once should be in the range of 1-{{.MaxAmount}}."
+ config:
+ read_config_failed:
+ other: Wedi methu darllen y ffurfwedd
+ database:
+ connection_failed:
+ other: Methodd cysylltiad cronfa ddata
+ create_table_failed:
+ other: Methwyd creu tabl
+ install:
+ create_config_failed:
+ other: Methu creu'r ffeil config.yaml.
+ upload:
+ unsupported_file_format:
+ other: Fformat ffeil heb ei gefnogi.
+ site_info:
+ config_not_found:
+ other: Site config not found.
+ badge:
+ object_not_found:
+ other: Badge object not found
+ reason:
+ spam:
+ name:
+ other: spam
+ desc:
+ other: This post is an advertisement, or vandalism. It is not useful or relevant to the current topic.
+ rude_or_abusive:
+ name:
+ other: rude or abusive
+ desc:
+ other: "A reasonable person would find this content inappropriate for respectful discourse."
+ a_duplicate:
+ name:
+ other: a duplicate
+ desc:
+ other: This question has been asked before and already has an answer.
+ placeholder:
+ other: Enter the existing question link
+ not_a_answer:
+ name:
+ other: not an answer
+ desc:
+ other: "This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question,or deleted altogether."
+ no_longer_needed:
+ name:
+ other: no longer needed
+ desc:
+ other: This comment is outdated, conversational or not relevant to this post.
+ something:
+ name:
+ other: something else
+ desc:
+ other: This post requires staff attention for another reason not listed above.
+ placeholder:
+ other: Let us know specifically what you are concerned about
+ community_specific:
+ name:
+ other: a community-specific reason
+ desc:
+ other: This question doesn't meet a community guideline.
+ not_clarity:
+ name:
+ other: needs details or clarity
+ desc:
+ other: This question currently includes multiple questions in one. It should focus on one problem only.
+ looks_ok:
+ name:
+ other: looks OK
+ desc:
+ other: This post is good as-is and not low quality.
+ needs_edit:
+ name:
+ other: needs edit, and I did it
+ desc:
+ other: Improve and correct problems with this post yourself.
+ needs_close:
+ name:
+ other: needs close
+ desc:
+ other: A closed question can't answer, but still can edit, vote and comment.
+ needs_delete:
+ name:
+ other: needs delete
+ desc:
+ other: This post will be deleted.
+ question:
+ close:
+ duplicate:
+ name:
+ other: sbam
+ desc:
+ other: Mae'r cwestiwn hwn wedi'i ofyn o'r blaen ac mae ganddo ateb yn barod.
+ guideline:
+ name:
+ other: rheswm cymunedol-benodol
+ desc:
+ other: Nid yw'r cwestiwn hwn yn bodloni canllaw cymunedol.
+ multiple:
+ name:
+ other: angen manylion neu eglurder
+ desc:
+ other: This question currently includes multiple questions in one. It should focus on one problem only.
+ other:
+ name:
+ other: rhywbeth arall
+ desc:
+ other: Mae'r swydd hon angen reswm arall nad yw wedi'i restru uchod.
+ operation_type:
+ asked:
+ other: gofynnodd
+ answered:
+ other: atebodd
+ modified:
+ other: wedi newid
+ deleted_title:
+ other: Deleted question
+ questions_title:
+ other: Questions
+ tag:
+ tags_title:
+ other: Tags
+ no_description:
+ other: The tag has no description.
+ notification:
+ action:
+ update_question:
+ other: cwestiwn wedi'i ddiweddaru
+ answer_the_question:
+ other: cwestiwn wedi ei ateb
+ update_answer:
+ other: ateb wedi'i ddiweddaru
+ accept_answer:
+ other: ateb derbyniol
+ comment_question:
+ other: cwestiwn a wnaed
+ comment_answer:
+ other: ateb a wnaed
+ reply_to_you:
+ other: atebodd i chi
+ mention_you:
+ other: wedi sôn amdanoch
+ your_question_is_closed:
+ other: Mae eich cwestiwn wedi’i gau
+ your_question_was_deleted:
+ other: Mae eich cwestiwn wedi’i dileu
+ your_answer_was_deleted:
+ other: Mae eich ateb wedi’i dileu
+ your_comment_was_deleted:
+ other: Mae eich sylw wedi’i dileu
+ up_voted_question:
+ other: upvoted question
+ down_voted_question:
+ other: downvoted question
+ up_voted_answer:
+ other: upvoted answer
+ down_voted_answer:
+ other: downvoted answer
+ up_voted_comment:
+ other: upvoted comment
+ invited_you_to_answer:
+ other: invited you to answer
+ earned_badge:
+ other: You've earned the "{{.BadgeName}}" badge
+ email_tpl:
+ change_email:
+ title:
+ other: "[{{.SiteName}}] Confirm your new email address"
+ body:
+ other: "Confirm your new email address for {{.SiteName}} by clicking on the following link: \n{{.ChangeEmailUrl}}
\n\nIf you did not request this change, please ignore this email.
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ new_answer:
+ title:
+ other: "[{{.SiteName}}] {{.DisplayName}} answered your question"
+ body:
+ other: "{{.QuestionTitle}}
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen.
\n\nUnsubscribe"
+ pass_reset:
+ title:
+ other: "[{{.SiteName }}] Password reset"
+ body:
+ other: "Somebody asked to reset your password on {{.SiteName}}.
\n\nIf it was not you, you can safely ignore this email.
\n\nClick the following link to choose a new password: \n{{.PassResetUrl}}\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ register:
+ title:
+ other: "[{{.SiteName}}] Confirm your new account"
+ body:
+ other: "Welcome to {{.SiteName}}!
\n\nClick the following link to confirm and activate your new account: \n{{.RegisterUrl}}
\n\nIf the above link is not clickable, try copying and pasting it into the address bar of your web browser.\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ test:
+ title:
+ other: "[{{.SiteName}}] Test Email"
+ body:
+ other: "This is a test email.\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ action_activity_type:
+ upvote:
+ other: upvote
+ upvoted:
+ other: upvoted
+ downvote:
+ other: downvote
+ downvoted:
+ other: downvoted
+ accept:
+ other: accept
+ accepted:
+ other: accepted
+ edit:
+ other: edit
+ review:
+ queued_post:
+ other: Queued post
+ flagged_post:
+ other: Flagged post
+ suggested_post_edit:
+ other: Suggested edits
+ reaction:
+ tooltip:
+ other: "{{ .Names }} and {{ .Count }} more..."
+ badge:
+ default_badges:
+ autobiographer:
+ name:
+ other: Autobiographer
+ desc:
+ other: Filled out profile information.
+ certified:
+ name:
+ other: Certified
+ desc:
+ other: Completed our new user tutorial.
+ editor:
+ name:
+ other: Editor
+ desc:
+ other: First post edit.
+ first_flag:
+ name:
+ other: First Flag
+ desc:
+ other: First flagged a post.
+ first_upvote:
+ name:
+ other: First Upvote
+ desc:
+ other: First up voted a post.
+ first_link:
+ name:
+ other: First Link
+ desc:
+ other: First added a link to another post.
+ first_reaction:
+ name:
+ other: First Reaction
+ desc:
+ other: First reacted to the post.
+ first_share:
+ name:
+ other: First Share
+ desc:
+ other: First shared a post.
+ scholar:
+ name:
+ other: Scholar
+ desc:
+ other: Asked a question and accepted an answer.
+ commentator:
+ name:
+ other: Commentator
+ desc:
+ other: Leave 5 comments.
+ new_user_of_the_month:
+ name:
+ other: New User of the Month
+ desc:
+ other: Outstanding contributions in their first month.
+ read_guidelines:
+ name:
+ other: Read Guidelines
+ desc:
+ other: Read the [community guidelines].
+ reader:
+ name:
+ other: Reader
+ desc:
+ other: Read every answers in a topic with more than 10 answers.
+ welcome:
+ name:
+ other: Welcome
+ desc:
+ other: Received a up vote.
+ nice_share:
+ name:
+ other: Nice Share
+ desc:
+ other: Shared a post with 25 unique visitors.
+ good_share:
+ name:
+ other: Good Share
+ desc:
+ other: Shared a post with 300 unique visitors.
+ great_share:
+ name:
+ other: Great Share
+ desc:
+ other: Shared a post with 1000 unique visitors.
+ out_of_love:
+ name:
+ other: Out of Love
+ desc:
+ other: Used 50 up votes in a day.
+ higher_love:
+ name:
+ other: Higher Love
+ desc:
+ other: Used 50 up votes in a day 5 times.
+ crazy_in_love:
+ name:
+ other: Crazy in Love
+ desc:
+ other: Used 50 up votes in a day 20 times.
+ promoter:
+ name:
+ other: Promoter
+ desc:
+ other: Invited a user.
+ campaigner:
+ name:
+ other: Campaigner
+ desc:
+ other: Invited 3 basic users.
+ champion:
+ name:
+ other: Champion
+ desc:
+ other: Invited 5 members.
+ thank_you:
+ name:
+ other: Thank You
+ desc:
+ other: Has 20 up voted posts and gave 10 up votes.
+ gives_back:
+ name:
+ other: Gives Back
+ desc:
+ other: Has 100 up voted posts and gave 100 up votes.
+ empathetic:
+ name:
+ other: Empathetic
+ desc:
+ other: Has 500 up voted posts and gave 1000 up votes.
+ enthusiast:
+ name:
+ other: Enthusiast
+ desc:
+ other: Visited 10 consecutive days.
+ aficionado:
+ name:
+ other: Aficionado
+ desc:
+ other: Visited 100 consecutive days.
+ devotee:
+ name:
+ other: Devotee
+ desc:
+ other: Visited 365 consecutive days.
+ anniversary:
+ name:
+ other: Anniversary
+ desc:
+ other: Active member for a year, posted at least once.
+ appreciated:
+ name:
+ other: Appreciated
+ desc:
+ other: Received 1 up vote on 20 posts.
+ respected:
+ name:
+ other: Respected
+ desc:
+ other: Received 2 up votes on 100 posts.
+ admired:
+ name:
+ other: Admired
+ desc:
+ other: Received 5 up votes on 300 posts.
+ solved:
+ name:
+ other: Solved
+ desc:
+ other: Have an answer be accepted.
+ guidance_counsellor:
+ name:
+ other: Guidance Counsellor
+ desc:
+ other: Have 10 answers be accepted.
+ know_it_all:
+ name:
+ other: Know-it-All
+ desc:
+ other: Have 50 answers be accepted.
+ solution_institution:
+ name:
+ other: Solution Institution
+ desc:
+ other: Have 150 answers be accepted.
+ nice_answer:
+ name:
+ other: Nice Answer
+ desc:
+ other: Answer score of 10 or more.
+ good_answer:
+ name:
+ other: Good Answer
+ desc:
+ other: Answer score of 25 or more.
+ great_answer:
+ name:
+ other: Great Answer
+ desc:
+ other: Answer score of 50 or more.
+ nice_question:
+ name:
+ other: Nice Question
+ desc:
+ other: Question score of 10 or more.
+ good_question:
+ name:
+ other: Good Question
+ desc:
+ other: Question score of 25 or more.
+ great_question:
+ name:
+ other: Great Question
+ desc:
+ other: Question score of 50 or more.
+ popular_question:
+ name:
+ other: Popular Question
+ desc:
+ other: Question with 500 views.
+ notable_question:
+ name:
+ other: Notable Question
+ desc:
+ other: Question with 1,000 views.
+ famous_question:
+ name:
+ other: Famous Question
+ desc:
+ other: Question with 5,000 views.
+ popular_link:
+ name:
+ other: Popular Link
+ desc:
+ other: Posted an external link with 50 clicks.
+ hot_link:
+ name:
+ other: Hot Link
+ desc:
+ other: Posted an external link with 300 clicks.
+ famous_link:
+ name:
+ other: Famous Link
+ desc:
+ other: Posted an external link with 100 clicks.
+ default_badge_groups:
+ getting_started:
+ name:
+ other: Getting Started
+ community:
+ name:
+ other: Community
+ posting:
+ name:
+ other: Posting
+# The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: Sut i Fformatio
+ desc: >-
+
mention a post: #post_id
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Cynt
+ next: Nesaf
+ page_title:
+ question: Cwestiwn
+ questions: Cwestiynau
+ tag: Tag
+ tags: Tagiau
+ tag_wiki: tag wiki
+ create_tag: Creu Tag
+ edit_tag: Golygu Tag
+ ask_a_question: Ychwanegu Cwestiwn
+ edit_question: Golygu Cwestiwn
+ edit_answer: Golygu Ateb
+ search: Chwiliwch
+ posts_containing: Postiadau yn cynnwys
+ settings: Gosodiadau
+ notifications: Hysbysiadau
+ login: Mewngofnodi
+ sign_up: Cofrestru
+ account_recovery: Adfer Cyfrif
+ account_activation: Ysgogi Cyfrif
+ confirm_email: Cadarnhau e-bost
+ account_suspended: Cyfrif wedi'i atal
+ admin: Gweinyddu
+ change_email: Addasu E-bost
+ install: Ateb Gosod
+ upgrade: Ateb Uwchraddio
+ maintenance: Cynnal a Chadw Gwefan
+ users: Defnyddwyr
+ oauth_callback: Processing
+ http_404: Gwall HTTP 404
+ http_50X: Gwall HTTP 500
+ http_403: Gwall HTTP 403
+ logout: Log Out
+ notifications:
+ title: Hysbysiadau
+ inbox: Mewnflwch
+ achievement: Llwyddiannau
+ new_alerts: New alerts
+ all_read: Marciwch y cyfan fel wedi'i ddarllen
+ show_more: Dangos mwy
+ someone: Someone
+ inbox_type:
+ all: All
+ posts: Posts
+ invites: Invites
+ votes: Votes
+ answer: Answer
+ question: Question
+ badge_award: Badge
+ suspended:
+ title: Mae'ch Cyfrif wedi'i Atal
+ until_time: "Cafodd eich cyfrif ei atal tan {{ time }}."
+ forever: Cafodd y defnyddiwr hwn ei atal am byth.
+ end: Nid ydych yn arwain cymunedol.
+ contact_us: Contact us
+ editor:
+ blockquote:
+ text: Dyfyniad
+ bold:
+ text: Cryf
+ chart:
+ text: Siart
+ flow_chart: Siart llif
+ sequence_diagram: Diagram dilyniant
+ class_diagram: Diagram dosbarth
+ state_diagram: Diagram cyflwr
+ entity_relationship_diagram: Diagram perthynas endid
+ user_defined_diagram: Diagram wedi'i ddiffinio gan y defnyddiwr
+ gantt_chart: Siart Gantt
+ pie_chart: Siart cylch
+ code:
+ text: Sampl côd
+ add_code: Ychwanegu sampl côd
+ form:
+ fields:
+ code:
+ label: Côd
+ msg:
+ empty: Ni all côd fod yn wag.
+ language:
+ label: Iaith
+ placeholder: Synhwyriad awtomatig
+ btn_cancel: Canslo
+ btn_confirm: Ychwanegu
+ formula:
+ text: Fformiwla
+ options:
+ inline: Fformiwla mewn-lein
+ block: Fformiwla bloc
+ heading:
+ text: Pennawd
+ options:
+ h1: Pennawd 1
+ h2: Pennawd 2
+ h3: Pennawd 3
+ h4: Pennawd 4
+ h5: Pennawd 5
+ h6: Pennawd 6
+ help:
+ text: Cymorth
+ hr:
+ text: Horizontal rule
+ image:
+ text: Delwedd
+ add_image: Ychwanegu delwedd
+ tab_image: Uwchlwytho delwedd
+ form_image:
+ fields:
+ file:
+ label: Image file
+ btn: Dewis delwedd
+ msg:
+ empty: Ni all ffeil fod yn wag.
+ only_image: Dim ond ffeiliau delwedd a ganiateir.
+ max_size: File size cannot exceed {{size}} MB.
+ desc:
+ label: Disgrifiad
+ tab_url: URL delwedd
+ form_url:
+ fields:
+ url:
+ label: URL delwedd
+ msg:
+ empty: Ni all URL delwedd fod yn wag.
+ name:
+ label: Disgrifiad
+ btn_cancel: Canslo
+ btn_confirm: Ychwanegu
+ uploading: Wrthi'n uwchlwytho
+ indent:
+ text: Mewnoliad
+ outdent:
+ text: Alloliad
+ italic:
+ text: Pwyslais
+ link:
+ text: Hypergyswllt
+ add_link: Ychwanegu hypergyswllt
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: Ni all URL fod yn wag.
+ name:
+ label: Disgrifiad
+ btn_cancel: Canslo
+ btn_confirm: Ychwanegu
+ ordered_list:
+ text: Numbered list
+ unordered_list:
+ text: Bulleted list
+ table:
+ text: Tabl
+ heading: Pennawd
+ cell: Cell
+ file:
+ text: Attach files
+ not_supported: "Don’t support that file type. Try again with {{file_type}}."
+ max_size: "Attach files size cannot exceed {{size}} MB."
+ close_modal:
+ title: Rwy'n cau'r post hon fel...
+ btn_cancel: Canslo
+ btn_submit: Cyflwyno
+ remark:
+ empty: Ni all fod yn wag.
+ msg:
+ empty: Dewis rheswm.
+ report_modal:
+ flag_title: Dwi'n tynnu sylw i adrodd y swydd hon fel...
+ close_title: Rwy'n cau'r post hon fel...
+ review_question_title: Adolygu cwestiwn
+ review_answer_title: Adolygu ateb
+ review_comment_title: Adolygu sylwad
+ btn_cancel: Canslo
+ btn_submit: Cyflwyno
+ remark:
+ empty: Ni all fod yn wag.
+ msg:
+ empty: Dewis rheswm.
+ not_a_url: URL format is incorrect.
+ url_not_match: URL origin does not match the current website.
+ tag_modal:
+ title: Creu tag newydd
+ form:
+ fields:
+ display_name:
+ label: Display name
+ msg:
+ empty: Ni all fod enw dangos yn wag.
+ range: Enw arddangos hyd at 35 nod.
+ slug_name:
+ label: URL slug
+ desc: Slug URL hyd at 35 nod.
+ msg:
+ empty: Ni all Slug URL fod yn wag.
+ range: Slug URL hyd at 35 nod.
+ character: Mae slug URL yn cynnwys set nodau na caniateir.
+ desc:
+ label: Disgrifiad
+ revision:
+ label: Revision
+ edit_summary:
+ label: Edit summary
+ placeholder: >-
+ Briefly explain your changes (corrected spelling, fixed grammar, improved formatting)
+ btn_cancel: Canslo
+ btn_submit: Cyflwyno
+ btn_post: Post tag newydd
+ tag_info:
+ created_at: Creuwyd
+ edited_at: Golygwyd
+ history: Hanes
+ synonyms:
+ title: Cyfystyron
+ text: Bydd y tagiau canlynol yn cael eu hail-fapio i
+ empty: No synonyms found.
+ btn_add: Add a synonym
+ btn_edit: Edit
+ btn_save: Save
+ synonyms_text: The following tags will be remapped to
+ delete:
+ title: Delete this tag
+ tip_with_posts: >-
+
You could use the edit link to refine and improve your existing answer, instead.
+ empty: Answer cannot be empty.
+ characters: content must be at least 6 characters in length.
+ tips:
+ header_1: Thanks for your answer
+ li1_1: Please be sure to answer the question. Provide details and share your research.
+ li1_2: Back up any statements you make with references or personal experience.
+ header_2: But avoid ...
+ li2_1: Asking for help, seeking clarification, or responding to other answers.
+ reopen:
+ confirm_btn: Reopen
+ title: Reopen this post
+ content: Are you sure you want to reopen?
+ list:
+ confirm_btn: List
+ title: List this post
+ content: Are you sure you want to list?
+ unlist:
+ confirm_btn: Unlist
+ title: Unlist this post
+ content: Are you sure you want to unlist?
+ pin:
+ title: Pin this post
+ content: Are you sure you wish to pinned globally? This post will appear at the top of all post lists.
+ confirm_btn: Pin
+ delete:
+ title: Delete this post
+ question: >-
+ We do not recommend deleting questions with answers because doing so deprives future readers of this knowledge.
Repeated deletion of answered questions can result in your account being blocked from asking. Are you sure you wish to delete?
+ answer_accepted: >-
+
We do not recommend deleting accepted answer because doing so deprives future readers of this knowledge.
Repeated deletion of accepted answers can result in your account being blocked from answering. Are you sure you wish to delete?
+ other: Are you sure you wish to delete?
+ tip_answer_deleted: This answer has been deleted
+ undelete_title: Undelete this post
+ undelete_desc: Are you sure you wish to undelete?
+ btns:
+ confirm: Confirm
+ cancel: Cancel
+ edit: Edit
+ save: Save
+ delete: Delete
+ undelete: Undelete
+ list: List
+ unlist: Unlist
+ unlisted: Unlisted
+ login: Log in
+ signup: Sign up
+ logout: Log out
+ verify: Verify
+ create: Create
+ approve: Approve
+ reject: Reject
+ skip: Skip
+ discard_draft: Discard draft
+ pinned: Pinned
+ all: All
+ question: Question
+ answer: Answer
+ comment: Comment
+ refresh: Refresh
+ resend: Resend
+ deactivate: Deactivate
+ active: Active
+ suspend: Suspend
+ unsuspend: Unsuspend
+ close: Close
+ reopen: Reopen
+ ok: OK
+ light: Light
+ dark: Dark
+ system_setting: System setting
+ default: Default
+ reset: Reset
+ tag: Tag
+ post_lowercase: post
+ filter: Filter
+ ignore: Ignore
+ submit: Submit
+ normal: Normal
+ closed: Closed
+ deleted: Deleted
+ deleted_permanently: Deleted permanently
+ pending: Pending
+ more: More
+ view: View
+ card: Card
+ compact: Compact
+ display_below: Display below
+ always_display: Always display
+ or: or
+ back_sites: Back to sites
+ search:
+ title: Search Results
+ keywords: Keywords
+ options: Options
+ follow: Follow
+ following: Following
+ counts: "{{count}} Results"
+ more: More
+ sort_btns:
+ relevance: Relevance
+ newest: Newest
+ active: Active
+ score: Score
+ more: More
+ tips:
+ title: Advanced Search Tips
+ tag: "<1>[tag]1> search with a tag"
+ user: "<1>user:username1> search by author"
+ answer: "<1>answers:01> unanswered questions"
+ score: "<1>score:31> posts with a 3+ score"
+ question: "<1>is:question1> search questions"
+ is_answer: "<1>is:answer1> search answers"
+ empty: We couldn't find anything. Try different or less specific keywords.
+ share:
+ name: Share
+ copy: Copy link
+ via: Share post via...
+ copied: Copied
+ facebook: Share to Facebook
+ twitter: Share to X
+ cannot_vote_for_self: You can't vote for your own post.
+ modal_confirm:
+ title: Error...
+ delete_permanently:
+ title: Delete permanently
+ content: Are you sure you want to delete permanently?
+ account_result:
+ success: Your new account is confirmed; you will be redirected to the home page.
+ link: Continue to homepage
+ oops: Oops!
+ invalid: The link you used no longer works.
+ confirm_new_email: Your email has been updated.
+ confirm_new_email_invalid: >-
+ Sorry, this confirmation link is no longer valid. Perhaps your email was already changed?
+ unsubscribe:
+ page_title: Unsubscribe
+ success_title: Unsubscribe Successful
+ success_desc: You have been successfully removed from this subscriber list and won't receive any further emails from us.
+ link: Change settings
+ question:
+ following_tags: Following Tags
+ edit: Edit
+ save: Save
+ follow_tag_tip: Follow tags to curate your list of questions.
+ hot_questions: Hot Questions
+ all_questions: All Questions
+ x_questions: "{{ count }} Questions"
+ x_answers: "{{ count }} answers"
+ questions: Questions
+ answers: Answers
+ newest: Newest
+ active: Active
+ hot: Hot
+ frequent: Frequent
+ recommend: Recommend
+ score: Score
+ unanswered: Unanswered
+ modified: modified
+ answered: answered
+ asked: asked
+ closed: closed
+ follow_a_tag: Follow a tag
+ more: More
+ personal:
+ overview: Overview
+ answers: Answers
+ answer: answer
+ questions: Questions
+ question: question
+ bookmarks: Bookmarks
+ reputation: Reputation
+ comments: Comments
+ votes: Votes
+ badges: Badges
+ newest: Newest
+ score: Score
+ edit_profile: Edit profile
+ visited_x_days: "Visited {{ count }} days"
+ viewed: Viewed
+ joined: Joined
+ comma: ","
+ last_login: Seen
+ about_me: About Me
+ about_me_empty: "// Hello, World !"
+ top_answers: Top Answers
+ top_questions: Top Questions
+ stats: Stats
+ list_empty: No posts found. Perhaps you'd like to select a different tab?
+ content_empty: No posts found.
+ accepted: Accepted
+ answered: answered
+ asked: asked
+ downvoted: downvoted
+ mod_short: MOD
+ mod_long: Moderators
+ x_reputation: reputation
+ x_votes: votes received
+ x_answers: answers
+ x_questions: questions
+ recent_badges: Recent Badges
+ install:
+ title: Installation
+ next: Next
+ done: Done
+ config_yaml_error: Can't create the config.yaml file.
+ lang:
+ label: Please choose a language
+ db_type:
+ label: Database engine
+ db_username:
+ label: Username
+ placeholder: root
+ msg: Username cannot be empty.
+ db_password:
+ label: Password
+ placeholder: root
+ msg: Password cannot be empty.
+ db_host:
+ label: Database host
+ placeholder: "db:3306"
+ msg: Database host cannot be empty.
+ db_name:
+ label: Database name
+ placeholder: answer
+ msg: Database name cannot be empty.
+ db_file:
+ label: Database file
+ placeholder: /data/answer.db
+ msg: Database file cannot be empty.
+ ssl_enabled:
+ label: Enable SSL
+ ssl_enabled_on:
+ label: On
+ ssl_enabled_off:
+ label: Off
+ ssl_mode:
+ label: SSL Mode
+ ssl_root_cert:
+ placeholder: sslrootcert file path
+ msg: Path to sslrootcert file cannot be empty
+ ssl_cert:
+ placeholder: sslcert file path
+ msg: Path to sslcert file cannot be empty
+ ssl_key:
+ placeholder: sslkey file path
+ msg: Path to sslkey file cannot be empty
+ config_yaml:
+ title: Create config.yaml
+ label: The config.yaml file created.
+ desc: >-
+ You can create the <1>config.yaml1> file manually in the <1>/var/wwww/xxx/1> directory and paste the following text into it.
+ info: After you've done that, click "Next" button.
+ site_information: Site Information
+ admin_account: Admin Account
+ site_name:
+ label: Site name
+ msg: Site name cannot be empty.
+ msg_max_length: Site name must be at maximum 30 characters in length.
+ site_url:
+ label: Site URL
+ text: The address of your site.
+ msg:
+ empty: Site URL cannot be empty.
+ incorrect: Site URL incorrect format.
+ max_length: Site URL must be at maximum 512 characters in length.
+ contact_email:
+ label: Contact email
+ text: Email address of key contact responsible for this site.
+ msg:
+ empty: Contact email cannot be empty.
+ incorrect: Contact email incorrect format.
+ login_required:
+ label: Private
+ switch: Login required
+ text: Only logged in users can access this community.
+ admin_name:
+ label: Name
+ msg: Name cannot be empty.
+ character: 'Must use the character set "a-z", "A-Z", "0-9", " - . _"'
+ msg_max_length: Name must be between 2 to 30 characters in length.
+ admin_password:
+ label: Password
+ text: >-
+ You will need this password to log in. Please store it in a secure location.
+ msg: Password cannot be empty.
+ msg_min_length: Password must be at least 8 characters in length.
+ msg_max_length: Password must be at maximum 32 characters in length.
+ admin_confirm_password:
+ label: "Confirm Password"
+ text: "Please re-enter your password to confirm."
+ msg: "Confirm password does not match."
+ admin_email:
+ label: Email
+ text: You will need this email to log in.
+ msg:
+ empty: Email cannot be empty.
+ incorrect: Email incorrect format.
+ ready_title: Your site is ready
+ ready_desc: >-
+ If you ever feel like changing more settings, visit <1>admin section1>; find it in the site menu.
+ good_luck: "Have fun, and good luck!"
+ warn_title: Warning
+ warn_desc: >-
+ The file <1>config.yaml1> already exists. If you need to reset any of the configuration items in this file, please delete it first.
+ install_now: You may try <1>installing now1>.
+ installed: Already installed
+ installed_desc: >-
+ You appear to have already installed. To reinstall please clear your old database tables first.
+ db_failed: Database connection failed
+ db_failed_desc: >-
+ This either means that the database information in your <1>config.yaml1> file is incorrect or that contact with the database server could not be established. This could mean your host's database server is down.
+ counts:
+ views: views
+ votes: votes
+ answers: answers
+ accepted: Accepted
+ page_error:
+ http_error: HTTP Error {{ code }}
+ desc_403: You don't have permission to access this page.
+ desc_404: Unfortunately, this page doesn't exist.
+ desc_50X: The server encountered an error and could not complete your request.
+ back_home: Back to homepage
+ page_maintenance:
+ desc: "We are under maintenance, we'll be back soon."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Contents
+ questions: Questions
+ answers: Answers
+ users: Users
+ badges: Badges
+ flags: Flags
+ settings: Settings
+ general: General
+ interface: Interface
+ smtp: SMTP
+ branding: Branding
+ legal: Legal
+ write: Write
+ tos: Terms of Service
+ privacy: Privacy
+ seo: SEO
+ customize: Customize
+ themes: Themes
+ css_html: CSS/HTML
+ login: Login
+ privileges: Privileges
+ plugins: Plugins
+ installed_plugins: Installed Plugins
+ website_welcome: Welcome to {{site_name}}
+ user_center:
+ login: Login
+ qrcode_login_tip: Please use {{ agentName }} to scan the QR code and log in.
+ login_failed_email_tip: Login failed, please allow this app to access your email information before try again.
+ badges:
+ modal:
+ title: Congratulations
+ content: You've earned a new badge.
+ close: Close
+ confirm: View badges
+ title: Badges
+ awarded: Awarded
+ earned_×: Earned ×{{ number }}
+ ×_awarded: "{{ number }} awarded"
+ can_earn_multiple: You can earn this multiple times.
+ earned: Earned
+ admin:
+ admin_header:
+ title: Admin
+ dashboard:
+ title: Dashboard
+ welcome: Welcome to Admin!
+ site_statistics: Site statistics
+ questions: "Questions:"
+ resolved: "Resolved:"
+ unanswered: "Unanswered:"
+ answers: "Answers:"
+ comments: "Comments:"
+ votes: "Votes:"
+ users: "Users:"
+ flags: "Flags:"
+ reviews: "Reviews:"
+ site_health: Site health
+ version: "Version:"
+ https: "HTTPS:"
+ upload_folder: "Upload folder:"
+ run_mode: "Running mode:"
+ private: Private
+ public: Public
+ smtp: "SMTP:"
+ timezone: "Timezone:"
+ system_info: System info
+ go_version: "Go version:"
+ database: "Database:"
+ database_size: "Database size:"
+ storage_used: "Storage used:"
+ uptime: "Uptime:"
+ links: Links
+ plugins: Plugins
+ github: GitHub
+ blog: Blog
+ contact: Contact
+ forum: Forum
+ documents: Documents
+ feedback: Feedback
+ support: Support
+ review: Review
+ config: Config
+ update_to: Update to
+ latest: Latest
+ check_failed: Check failed
+ "yes": "Yes"
+ "no": "No"
+ not_allowed: Not allowed
+ allowed: Allowed
+ enabled: Enabled
+ disabled: Disabled
+ writable: Writable
+ not_writable: Not writable
+ flags:
+ title: Flags
+ pending: Pending
+ completed: Completed
+ flagged: Flagged
+ flagged_type: Flagged {{ type }}
+ created: Created
+ action: Action
+ review: Review
+ user_role_modal:
+ title: Change user role to...
+ btn_cancel: Cancel
+ btn_submit: Submit
+ new_password_modal:
+ title: Set new password
+ form:
+ fields:
+ password:
+ label: Password
+ text: The user will be logged out and need to login again.
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ edit_profile_modal:
+ title: Edit profile
+ form:
+ fields:
+ display_name:
+ label: Display name
+ msg_range: Display name up to 30 characters.
+ username:
+ label: Username
+ msg_range: Username up to 30 characters.
+ email:
+ label: Email
+ msg_invalid: Invalid Email Address.
+ edit_success: Edited successfully
+ btn_cancel: Cancel
+ btn_submit: Submit
+ user_modal:
+ title: Add new user
+ form:
+ fields:
+ users:
+ label: Bulk add user
+ placeholder: "John Smith, john@example.com, BUSYopr2\nAlice, alice@example.com, fpDntV8q"
+ text: Separate “name, email, password” with commas. One user per line.
+ msg: "Please enter the user's email, one per line."
+ display_name:
+ label: Display name
+ msg: Display name must be 2-30 characters in length.
+ email:
+ label: Email
+ msg: Email is not valid.
+ password:
+ label: Password
+ msg: Password must be at 8-32 characters in length.
+ btn_cancel: Cancel
+ btn_submit: Submit
+ users:
+ title: Users
+ name: Name
+ email: Email
+ reputation: Reputation
+ created_at: Created Time
+ delete_at: Deleted Time
+ suspend_at: Suspended Time
+ status: Status
+ role: Role
+ action: Action
+ change: Change
+ all: All
+ staff: Staff
+ more: More
+ inactive: Inactive
+ suspended: Suspended
+ deleted: Deleted
+ normal: Normal
+ Moderator: Moderator
+ Admin: Admin
+ User: User
+ filter:
+ placeholder: "Filter by name, user:id"
+ set_new_password: Set new password
+ edit_profile: Edit profile
+ change_status: Change status
+ change_role: Change role
+ show_logs: Show logs
+ add_user: Add user
+ deactivate_user:
+ title: Deactivate user
+ content: An inactive user must re-validate their email.
+ delete_user:
+ title: Delete this user
+ content: Are you sure you want to delete this user? This is permanent!
+ remove: Remove their content
+ label: Remove all questions, answers, comments, etc.
+ text: Don’t check this if you wish to only delete the user’s account.
+ suspend_user:
+ title: Suspend this user
+ content: A suspended user can't log in.
+ questions:
+ page_title: Questions
+ unlisted: Unlisted
+ post: Post
+ votes: Votes
+ answers: Answers
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ pending: Pending
+ filter:
+ placeholder: "Filter by title, question:id"
+ answers:
+ page_title: Answers
+ post: Post
+ votes: Votes
+ created: Created
+ status: Status
+ action: Action
+ change: Change
+ filter:
+ placeholder: "Filter by title, answer:id"
+ general:
+ page_title: General
+ name:
+ label: Site name
+ msg: Site name cannot be empty.
+ text: "The name of this site, as used in the title tag."
+ site_url:
+ label: Site URL
+ msg: Site url cannot be empty.
+ validate: Please enter a valid URL.
+ text: The address of your site.
+ short_desc:
+ label: Short site description
+ msg: Short site description cannot be empty.
+ text: "Short description, as used in the title tag on homepage."
+ desc:
+ label: Site description
+ msg: Site description cannot be empty.
+ text: "Describe this site in one sentence, as used in the meta description tag."
+ contact_email:
+ label: Contact email
+ msg: Contact email cannot be empty.
+ validate: Contact email is not valid.
+ text: Email address of key contact responsible for this site.
+ check_update:
+ label: Software updates
+ text: Automatically check for updates
+ interface:
+ page_title: Interface
+ language:
+ label: Interface language
+ msg: Interface language cannot be empty.
+ text: User interface language. It will change when you refresh the page.
+ time_zone:
+ label: Timezone
+ msg: Timezone cannot be empty.
+ text: Choose a city in the same timezone as you.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: From email
+ msg: From email cannot be empty.
+ text: The email address which emails are sent from.
+ from_name:
+ label: From name
+ msg: From name cannot be empty.
+ text: The name which emails are sent from.
+ smtp_host:
+ label: SMTP host
+ msg: SMTP host cannot be empty.
+ text: Your mail server.
+ encryption:
+ label: Encryption
+ msg: Encryption cannot be empty.
+ text: For most servers SSL is the recommended option.
+ ssl: SSL
+ tls: TLS
+ none: None
+ smtp_port:
+ label: SMTP port
+ msg: SMTP port must be number 1 ~ 65535.
+ text: The port to your mail server.
+ smtp_username:
+ label: SMTP username
+ msg: SMTP username cannot be empty.
+ smtp_password:
+ label: SMTP password
+ msg: SMTP password cannot be empty.
+ test_email_recipient:
+ label: Test email recipients
+ text: Provide email address that will receive test sends.
+ msg: Test email recipients is invalid
+ smtp_authentication:
+ label: Enable authentication
+ title: SMTP authentication
+ msg: SMTP authentication cannot be empty.
+ "yes": "Yes"
+ "no": "No"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo
+ msg: Logo cannot be empty.
+ text: The logo image at the top left of your site. Use a wide rectangular image with a height of 56 and an aspect ratio greater than 3:1. If left blank, the site title text will be shown.
+ mobile_logo:
+ label: Mobile logo
+ text: The logo used on mobile version of your site. Use a wide rectangular image with a height of 56. If left blank, the image from the "logo" setting will be used.
+ square_icon:
+ label: Square icon
+ msg: Square icon cannot be empty.
+ text: Image used as the base for metadata icons. Should ideally be larger than 512x512.
+ favicon:
+ label: Favicon
+ text: A favicon for your site. To work correctly over a CDN it must be a png. Will be resized to 32x32. If left blank, "square icon" will be used.
+ legal:
+ page_title: Legal
+ terms_of_service:
+ label: Terms of service
+ text: "You can add terms of service content here. If you already have a document hosted elsewhere, provide the full URL here."
+ privacy_policy:
+ label: Privacy policy
+ text: "You can add privacy policy content here. If you already have a document hosted elsewhere, provide the full URL here."
+ external_content_display:
+ label: External content
+ text: "Content includes images, videos, and media embedded from external websites."
+ always_display: Always display external content
+ ask_before_display: Ask before displaying external content
+ write:
+ page_title: Write
+ restrict_answer:
+ title: Answer write
+ label: Each user can only write one answer for each question
+ text: "Turn off to allow users to write multiple answers to the same question, which may cause answers to be unfocused."
+ recommend_tags:
+ label: Recommend tags
+ text: "Recommend tags will show in the dropdown list by default."
+ msg:
+ contain_reserved: "recommended tags cannot contain reserved tags"
+ required_tag:
+ title: Set required tags
+ label: Set “Recommend tags” as required tags
+ text: "Every new question must have at least one recommend tag."
+ reserved_tags:
+ label: Reserved tags
+ text: "Reserved tags can only be used by moderator."
+ image_size:
+ label: Max image size (MB)
+ text: "The maximum image upload size."
+ attachment_size:
+ label: Max attachment size (MB)
+ text: "The maximum attachment files upload size."
+ image_megapixels:
+ label: Max image megapixels
+ text: "Maximum number of megapixels allowed for an image."
+ image_extensions:
+ label: Authorized image extensions
+ text: "A list of file extensions allowed for image display, separate with commas."
+ attachment_extensions:
+ label: Authorized attachment extensions
+ text: "A list of file extensions allowed for upload, separate with commas. WARNING: Allowing uploads may cause security issues."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Custom URL structures can improve the usability, and forward-compatibility of your links.
+ robots:
+ label: robots.txt
+ text: This will permanently override any related site settings.
+ themes:
+ page_title: Themes
+ themes:
+ label: Themes
+ text: Select an existing theme.
+ color_scheme:
+ label: Color scheme
+ navbar_style:
+ label: Navbar style
+ primary_color:
+ label: Primary color
+ text: Modify the colors used by your themes
+ css_and_html:
+ page_title: CSS and HTML
+ custom_css:
+ label: Custom CSS
+ text: >
+
+ head:
+ label: Head
+ text: >
+
+ header:
+ label: Header
+ text: >
+
+ footer:
+ label: Footer
+ text: This will insert before </body>.
+ sidebar:
+ label: Sidebar
+ text: This will insert in sidebar.
+ login:
+ page_title: Login
+ membership:
+ title: Membership
+ label: Allow new registrations
+ text: Turn off to prevent anyone from creating a new account.
+ email_registration:
+ title: Email registration
+ label: Allow email registration
+ text: Turn off to prevent anyone creating new account through email.
+ allowed_email_domains:
+ title: Allowed email domains
+ text: Email domains that users must register accounts with. One domain per line. Ignored when empty.
+ private:
+ title: Private
+ label: Login required
+ text: Only logged in users can access this community.
+ password_login:
+ title: Password login
+ label: Allow email and password login
+ text: "WARNING: If turn off, you may be unable to log in if you have not previously configured other login method."
+ installed_plugins:
+ title: Installed Plugins
+ plugin_link: Plugins extend and expand the functionality. You may find plugins in the <1>Plugin Repository1>.
+ filter:
+ all: All
+ active: Active
+ inactive: Inactive
+ outdated: Outdated
+ plugins:
+ label: Plugins
+ text: Select an existing plugin.
+ name: Name
+ version: Version
+ status: Status
+ action: Action
+ deactivate: Deactivate
+ activate: Activate
+ settings: Settings
+ settings_users:
+ title: Users
+ avatar:
+ label: Default avatar
+ text: For users without a custom avatar of their own.
+ gravatar_base_url:
+ label: Gravatar Base URL
+ text: URL of the Gravatar provider's API base. Ignored when empty.
+ profile_editable:
+ title: Profile editable
+ allow_update_display_name:
+ label: Allow users to change their display name
+ allow_update_username:
+ label: Allow users to change their username
+ allow_update_avatar:
+ label: Allow users to change their profile image
+ allow_update_bio:
+ label: Allow users to change their about me
+ allow_update_website:
+ label: Allow users to change their website
+ allow_update_location:
+ label: Allow users to change their location
+ privilege:
+ title: Privileges
+ level:
+ label: Reputation required level
+ text: Choose the reputation required for the privileges
+ msg:
+ should_be_number: the input should be number
+ number_larger_1: number should be equal or larger than 1
+ badges:
+ action: Action
+ active: Active
+ activate: Activate
+ all: All
+ awards: Awards
+ deactivate: Deactivate
+ filter:
+ placeholder: Filter by name, badge:id
+ group: Group
+ inactive: Inactive
+ name: Name
+ show_logs: Show logs
+ status: Status
+ title: Badges
+ form:
+ optional: (optional)
+ empty: cannot be empty
+ invalid: is invalid
+ btn_submit: Save
+ not_found_props: "Required property {{ key }} not found."
+ select: Select
+ page_review:
+ review: Review
+ proposed: proposed
+ question_edit: Question edit
+ answer_edit: Answer edit
+ tag_edit: Tag edit
+ edit_summary: Edit summary
+ edit_question: Edit question
+ edit_answer: Edit answer
+ edit_tag: Edit tag
+ empty: No review tasks left.
+ approve_revision_tip: Do you approve this revision?
+ approve_flag_tip: Do you approve this flag?
+ approve_post_tip: Do you approve this post?
+ approve_user_tip: Do you approve this user?
+ suggest_edits: Suggested edits
+ flag_post: Flag post
+ flag_user: Flag user
+ queued_post: Queued post
+ queued_user: Queued user
+ filter_label: Type
+ reputation: reputation
+ flag_post_type: Flagged this post as {{ type }}.
+ flag_user_type: Flagged this user as {{ type }}.
+ edit_post: Edit post
+ list_post: List post
+ unlist_post: Unlist post
+ timeline:
+ undeleted: undeleted
+ deleted: deleted
+ downvote: downvote
+ upvote: upvote
+ accept: accept
+ cancelled: cancelled
+ commented: commented
+ rollback: rollback
+ edited: edited
+ answered: answered
+ asked: asked
+ closed: closed
+ reopened: reopened
+ created: created
+ pin: pinned
+ unpin: unpinned
+ show: listed
+ hide: unlisted
+ title: "History for"
+ tag_title: "Timeline for"
+ show_votes: "Show votes"
+ n_or_a: N/A
+ title_for_question: "Timeline for"
+ title_for_answer: "Timeline for answer to {{ title }} by {{ author }}"
+ title_for_tag: "Timeline for tag"
+ datetime: Datetime
+ type: Type
+ by: By
+ comment: Comment
+ no_data: "We couldn't find anything."
+ users:
+ title: Users
+ users_with_the_most_reputation: Users with the highest reputation scores this week
+ users_with_the_most_vote: Users who voted the most this week
+ staffs: Our community staff
+ reputation: reputation
+ votes: votes
+ prompt:
+ leave_page: Are you sure you want to leave the page?
+ changes_not_save: Your changes may not be saved.
+ draft:
+ discard_confirm: Are you sure you want to discard your draft?
+ messages:
+ post_deleted: This post has been deleted.
+ post_cancel_deleted: This post has been undeleted.
+ post_pin: This post has been pinned.
+ post_unpin: This post has been unpinned.
+ post_hide_list: This post has been hidden from list.
+ post_show_list: This post has been shown to list.
+ post_reopen: This post has been reopened.
+ post_list: This post has been listed.
+ post_unlist: This post has been unlisted.
+ post_pending: Your post is awaiting review. This is a preview, it will be visible after it has been approved.
+ post_closed: This post has been closed.
+ answer_deleted: This answer has been deleted.
+ answer_cancel_deleted: This answer has been undeleted.
+ change_user_role: This user's role has been changed.
+ user_inactive: This user is already inactive.
+ user_normal: This user is already normal.
+ user_suspended: This user has been suspended.
+ user_deleted: This user has been deleted.
+ badge_activated: This badge has been activated.
+ badge_inactivated: This badge has been inactivated.
+ users_deleted: These users have been deleted.
+ posts_deleted: These questions have been deleted.
+ answers_deleted: These answers have been deleted.
+ copy: Copy to clipboard
+ copied: Copied
+ external_content_warning: External images/media are not displayed.
+
+
diff --git a/answer-data/i18n/da_DK.yaml b/answer-data/i18n/da_DK.yaml
new file mode 100644
index 0000000..43b9d01
--- /dev/null
+++ b/answer-data/i18n/da_DK.yaml
@@ -0,0 +1,2319 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: Gennemført.
+ unknown:
+ other: Ukendt fejl.
+ request_format_error:
+ other: Forespørgselsformat er ikke gyldigt.
+ unauthorized_error:
+ other: Uautoriseret.
+ database_error:
+ other: Data-server fejl.
+ forbidden_error:
+ other: Forbudt.
+ duplicate_request_error:
+ other: Duplilkeret indenselse.
+ action:
+ report:
+ other: Anmeld
+ edit:
+ other: Rediger
+ delete:
+ other: Slet
+ close:
+ other: Luk
+ reopen:
+ other: Genåbn
+ forbidden_error:
+ other: Forbudt.
+ pin:
+ other: Fastgør
+ hide:
+ other: Afliste
+ unpin:
+ other: Frigør
+ show:
+ other: Liste
+ invite_someone_to_answer:
+ other: Rediger
+ undelete:
+ other: Genopret
+ merge:
+ other: Merge
+ role:
+ name:
+ user:
+ other: Bruger
+ admin:
+ other: Administrator
+ moderator:
+ other: Moderator
+ description:
+ user:
+ other: Standard uden særlig adgang.
+ admin:
+ other: Hav den fulde magt til at få adgang til webstedet.
+ moderator:
+ other: Har adgang til alle indlæg undtagen administratorindstillinger.
+ privilege:
+ level_1:
+ description:
+ other: Niveau 1 (mindre omdømme kræves for private team, gruppe)
+ level_2:
+ description:
+ other: Niveau 2 (lav omdømme kræves for opstart fællesskab)
+ level_3:
+ description:
+ other: Niveau 3 (højt omdømme kræves for moden fællesskab)
+ level_custom:
+ description:
+ other: Brugerdefineret Niveau
+ rank_question_add_label:
+ other: Stil spørgsmål
+ rank_answer_add_label:
+ other: Skriv svar
+ rank_comment_add_label:
+ other: Skriv kommentar
+ rank_report_add_label:
+ other: Anmeld
+ rank_comment_vote_up_label:
+ other: Op-stem kommentar
+ rank_link_url_limit_label:
+ other: Skriv mere end 2 links ad gangen
+ rank_question_vote_up_label:
+ other: Op-stem spørgsmål
+ rank_answer_vote_up_label:
+ other: Op-stem svar
+ rank_question_vote_down_label:
+ other: Ned-stem spørgsmål
+ rank_answer_vote_down_label:
+ other: Ned-stem svar
+ rank_invite_someone_to_answer_label:
+ other: Inviter nogen til at svare
+ rank_tag_add_label:
+ other: Opret et nyt tag
+ rank_tag_edit_label:
+ other: Rediger tag beskrivelse (skal gennemgås)
+ rank_question_edit_label:
+ other: Rediger andres spørgsmål (skal gennemgås)
+ rank_answer_edit_label:
+ other: Redigere andres svar (skal gennemgås)
+ rank_question_edit_without_review_label:
+ other: Rediger andres spørgsmål uden gennemgang
+ rank_answer_edit_without_review_label:
+ other: Rediger andres svar uden gennemgang
+ rank_question_audit_label:
+ other: Gennemse spørgsmål redigeringer
+ rank_answer_audit_label:
+ other: Gennemgå svar redigeringer
+ rank_tag_audit_label:
+ other: Gennemse tag redigeringer
+ rank_tag_edit_without_review_label:
+ other: Rediger tag beskrivelse uden gennemgang
+ rank_tag_synonym_label:
+ other: Administrer tag synonymer
+ email:
+ other: E-mail
+ e_mail:
+ other: E-mail
+ password:
+ other: Adgangskode
+ pass:
+ other: Adgangskode
+ old_pass:
+ other: Current password
+ original_text:
+ other: Dette indlæg
+ email_or_password_wrong_error:
+ other: E-mail og adgangskode stemmer ikke overens.
+ error:
+ common:
+ invalid_url:
+ other: Ugyldig URL.
+ status_invalid:
+ other: Invalid status.
+ password:
+ space_invalid:
+ other: Adgangskoden må ikke indeholde mellemrum.
+ admin:
+ cannot_update_their_password:
+ other: Du kan ikke ændre din adgangskode.
+ cannot_edit_their_profile:
+ other: Du kan ikke ændre din profil.
+ cannot_modify_self_status:
+ other: Du kan ikke ændre din status.
+ email_or_password_wrong:
+ other: E-mail og adgangskode stemmer ikke overens.
+ answer:
+ not_found:
+ other: Svar ikke fundet.
+ cannot_deleted:
+ other: Ingen tilladelser til at slette.
+ cannot_update:
+ other: Ingen tilladelse til at opdatere.
+ question_closed_cannot_add:
+ other: Spørgsmål er lukket og kan ikke tilføjes.
+ content_cannot_empty:
+ other: Answer content cannot be empty.
+ comment:
+ edit_without_permission:
+ other: Kommentar er ikke tilladt at redigere.
+ not_found:
+ other: Kommentar ikke fundet.
+ cannot_edit_after_deadline:
+ other: Kommentaren er for gammel til at blive redigeret.
+ content_cannot_empty:
+ other: Comment content cannot be empty.
+ email:
+ duplicate:
+ other: Email eksisterer allerede.
+ need_to_be_verified:
+ other: E-mail skal bekræftes.
+ verify_url_expired:
+ other: Email bekræftet URL er udløbet. Send venligst e-mailen igen.
+ illegal_email_domain_error:
+ other: E-mail er ikke tilladt fra dette e-mail-domæne. Brug venligst et andet.
+ lang:
+ not_found:
+ other: Sprog-fil kunne ikke findes.
+ object:
+ captcha_verification_failed:
+ other: Captcha er forkert.
+ disallow_follow:
+ other: Du har ikke tilladelse til at følge.
+ disallow_vote:
+ other: Du har ikke tilladelse til at stemme.
+ disallow_vote_your_self:
+ other: Du kan ikke stemme på dit eget indlæg.
+ not_found:
+ other: Objekt ikke fundet.
+ verification_failed:
+ other: Verifikation mislykkedes.
+ email_or_password_incorrect:
+ other: E-mail og adgangskode stemmer ikke overens.
+ old_password_verification_failed:
+ other: Den gamle adgangskodebekræftelse mislykkedes
+ new_password_same_as_previous_setting:
+ other: Den nye adgangskode er den samme som den foregående.
+ already_deleted:
+ other: Dette indlæg er blevet slettet.
+ meta:
+ object_not_found:
+ other: Metaobjekt ikke fundet
+ question:
+ already_deleted:
+ other: Dette indlæg er blevet slettet.
+ under_review:
+ other: Dit indlæg afventer gennemgang. Det vil være synligt, når det er blevet godkendt.
+ not_found:
+ other: Spørgsmål ikke fundet.
+ cannot_deleted:
+ other: Ingen tilladelser til at slette.
+ cannot_close:
+ other: Ingen tilladelse til at lukke.
+ cannot_update:
+ other: Ingen tilladelse til at opdatere.
+ content_cannot_empty:
+ other: Content cannot be empty.
+ rank:
+ fail_to_meet_the_condition:
+ other: Omdømmelse rang opfylder ikke betingelsen.
+ vote_fail_to_meet_the_condition:
+ other: Tak for feedback. Du skal mindst have {{.Rank}} ry for at afgive en stemme.
+ no_enough_rank_to_operate:
+ other: Du skal mindst {{.Rank}} omdømme for at gøre dette.
+ report:
+ handle_failed:
+ other: Report handle failed.
+ not_found:
+ other: Rapport ikke fundet.
+ tag:
+ already_exist:
+ other: Tag findes allerede.
+ not_found:
+ other: Tag blev ikke fundet.
+ recommend_tag_not_found:
+ other: Anbefal tag eksisterer ikke.
+ recommend_tag_enter:
+ other: Indtast mindst et påkrævet tag.
+ not_contain_synonym_tags:
+ other: Må ikke indeholde synonym tags.
+ cannot_update:
+ other: Ingen tilladelse til at opdatere.
+ is_used_cannot_delete:
+ other: Du kan ikke slette et tag, der er i brug.
+ cannot_set_synonym_as_itself:
+ other: Du kan ikke indstille synonymet for det nuværende tag som sig selv.
+ smtp:
+ config_from_name_cannot_be_email:
+ other: Fra-navnet kan ikke være en e-mail-adresse.
+ theme:
+ not_found:
+ other: Tema ikke fundet.
+ revision:
+ review_underway:
+ other: Kan ikke redigere i øjeblikket, der er en version i revisionskøen.
+ no_permission:
+ other: Ingen tilladelse til at revidere.
+ user:
+ external_login_missing_user_id:
+ other: Den tredjepartsplatform giver ikke et unikt UserID, så du kan ikke logge ind, kontakt venligst webstedsadministratoren.
+ external_login_unbinding_forbidden:
+ other: Angiv en adgangskode til din konto, før du fjerner dette login.
+ email_or_password_wrong:
+ other:
+ other: E-mail og adgangskode stemmer ikke overens.
+ not_found:
+ other: Bruger ikke fundet.
+ suspended:
+ other: Brugeren er suspenderet.
+ username_invalid:
+ other: Brugernavn er ugyldigt.
+ username_duplicate:
+ other: Brugernavn er allerede i brug.
+ set_avatar:
+ other: Avatar sæt mislykkedes.
+ cannot_update_your_role:
+ other: Du kan ikke ændre din rolle.
+ not_allowed_registration:
+ other: Webstedet er ikke åbent for registrering.
+ not_allowed_login_via_password:
+ other: I øjeblikket er det ikke tilladt at logge ind via adgangskode.
+ access_denied:
+ other: Adgang nægtet
+ page_access_denied:
+ other: Du har ikke adgang til denne side.
+ add_bulk_users_format_error:
+ other: "Fejl {{.Field}} format nær '{{.Content}}' i linje {{.Line}}. {{.ExtraMessage}}"
+ add_bulk_users_amount_error:
+ other: "Antallet af brugere du tilføjer på én gang skal være i intervallet 1 -{{.MaxAmount}}."
+ config:
+ read_config_failed:
+ other: Kunne ikke læse konfigurationen
+ database:
+ connection_failed:
+ other: Database forbindelse mislykkedes
+ create_table_failed:
+ other: Tabellen kunne ikke oprettes
+ install:
+ create_config_failed:
+ other: Kan ikke oprette filen config.yaml.
+ upload:
+ unsupported_file_format:
+ other: Ikke understøttet filformat.
+ site_info:
+ config_not_found:
+ other: Site config ikke fundet.
+ badge:
+ object_not_found:
+ other: Badge object not found
+ reason:
+ spam:
+ name:
+ other: spam
+ desc:
+ other: Dette indlæg er en annonce eller vandalisme. Det er ikke nyttigt eller relevant for det aktuelle emne.
+ rude_or_abusive:
+ name:
+ other: uhøflig eller misbrug
+ desc:
+ other: "A reasonable person would find this content inappropriate for respectful discourse."
+ a_duplicate:
+ name:
+ other: en duplikering
+ desc:
+ other: Dette spørgsmål er blevet stillet før og har allerede et svar.
+ placeholder:
+ other: Indtast linket til eksisterende spørgsmål
+ not_a_answer:
+ name:
+ other: ikke et svar
+ desc:
+ other: "This was posted as an answer, but it does not attempt to answer the question. It should possibly be an edit, a comment, another question,or deleted altogether."
+ no_longer_needed:
+ name:
+ other: ikke længere nødvendigt
+ desc:
+ other: Denne kommentar er forældet, samtale-agtig eller ikke relevant for dette indlæg.
+ something:
+ name:
+ other: noget andet
+ desc:
+ other: Dette indlæg kræver personalets opmærksomhed af en anden grund, som ikke er nævnt ovenfor.
+ placeholder:
+ other: Lad os vide specifikt, hvad du er bekymret over
+ community_specific:
+ name:
+ other: en fællesskabsspecifik årsag
+ desc:
+ other: Dette spørgsmål opfylder ikke en fællesskabsretningslinje.
+ not_clarity:
+ name:
+ other: kræver detaljer eller klarhed
+ desc:
+ other: Dette spørgsmål indeholder i øjeblikket flere spørgsmål i én. Det bør kun fokusere på ét problem.
+ looks_ok:
+ name:
+ other: ser OK ud
+ desc:
+ other: Dette indlæg er godt som er og ikke lav kvalitet.
+ needs_edit:
+ name:
+ other: har brug for redigering, og jeg gjorde det
+ desc:
+ other: Forbedre og ret selv problemer med dette indlæg.
+ needs_close:
+ name:
+ other: skal lukkes
+ desc:
+ other: Et lukket spørgsmål kan ikke besvares, men du kan stadig redigere, stemme og kommentere.
+ needs_delete:
+ name:
+ other: skal slettes
+ desc:
+ other: Dette indlæg bliver slettet.
+ question:
+ close:
+ duplicate:
+ name:
+ other: spam
+ desc:
+ other: Dette spørgsmål er blevet stillet før og har allerede et svar.
+ guideline:
+ name:
+ other: en fællesskabsspecifik årsag
+ desc:
+ other: Dette spørgsmål opfylder ikke en fællesskabsretningslinje.
+ multiple:
+ name:
+ other: kræver detaljer eller klarhed
+ desc:
+ other: This question currently includes multiple questions in one. It should focus on one problem only.
+ other:
+ name:
+ other: noget andet
+ desc:
+ other: Dette indlæg kræver en anden grund som ikke er nævnt ovenfor.
+ operation_type:
+ asked:
+ other: spurgt
+ answered:
+ other: besvaret
+ modified:
+ other: ændret
+ deleted_title:
+ other: Slettet spørgsmål
+ questions_title:
+ other: Spørgsmål
+ tag:
+ tags_title:
+ other: Tags
+ no_description:
+ other: Tag har ingen beskrivelse.
+ notification:
+ action:
+ update_question:
+ other: opdateret spørgsmål
+ answer_the_question:
+ other: besvaret spørgsmål
+ update_answer:
+ other: opdateret svar
+ accept_answer:
+ other: accepteret svar
+ comment_question:
+ other: kommenteret spørgsmål
+ comment_answer:
+ other: kommenteret svar
+ reply_to_you:
+ other: svarede dig
+ mention_you:
+ other: nævnte dig
+ your_question_is_closed:
+ other: Dit spørgsmål er blevet lukket
+ your_question_was_deleted:
+ other: Dit spørgsmål er blevet slettet
+ your_answer_was_deleted:
+ other: Dit svar er blevet slettet
+ your_comment_was_deleted:
+ other: Din kommentar er slettet
+ up_voted_question:
+ other: op-stemt spørgsmål
+ down_voted_question:
+ other: ned-stemt spørgsmål
+ up_voted_answer:
+ other: op-stemt svar
+ down_voted_answer:
+ other: ned-stemt svar
+ up_voted_comment:
+ other: op-stemt kommentar
+ invited_you_to_answer:
+ other: inviterede dig til at svare
+ earned_badge:
+ other: You've earned the "{{.BadgeName}}" badge
+ email_tpl:
+ change_email:
+ title:
+ other: "[{{.SiteName}}] Bekræft din nye e-mailadresse"
+ body:
+ other: "Confirm your new email address for {{.SiteName}} by clicking on the following link: \n{{.ChangeEmailUrl}}
\n\nIf you did not request this change, please ignore this email.
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ new_answer:
+ title:
+ other: "[{{.SiteName}}] {{.DisplayName}} besvarede dit spørgsmål"
+ body:
+ other: "{{.QuestionTitle}}
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen.
\n\nUnsubscribe"
+ pass_reset:
+ title:
+ other: "[{{.SiteName }}] Nulstilling af adgangskode"
+ body:
+ other: "Somebody asked to reset your password on {{.SiteName}}.
\n\nIf it was not you, you can safely ignore this email.
\n\nClick the following link to choose a new password: \n{{.PassResetUrl}}\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ register:
+ title:
+ other: "[{{.SiteName}}] Bekræft din nye konto"
+ body:
+ other: "Welcome to {{.SiteName}}!
\n\nClick the following link to confirm and activate your new account: \n{{.RegisterUrl}}
\n\nIf the above link is not clickable, try copying and pasting it into the address bar of your web browser.\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ test:
+ title:
+ other: "[{{.SiteName}}] Test E-Mail"
+ body:
+ other: "This is a test email.\n
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen."
+ action_activity_type:
+ upvote:
+ other: stem op
+ upvoted:
+ other: stemt op
+ downvote:
+ other: stem ned
+ downvoted:
+ other: stemt ned
+ accept:
+ other: acceptér
+ accepted:
+ other: accepteret
+ edit:
+ other: rediger
+ review:
+ queued_post:
+ other: Indlæg i kø
+ flagged_post:
+ other: Anmeldt indlæg
+ suggested_post_edit:
+ other: Foreslåede redigeringer
+ reaction:
+ tooltip:
+ other: "{{ .Names }} og {{ .Count }} mere..."
+ badge:
+ default_badges:
+ autobiographer:
+ name:
+ other: Autobiographer
+ desc:
+ other: Filled out profile information.
+ certified:
+ name:
+ other: Certified
+ desc:
+ other: Completed our new user tutorial.
+ editor:
+ name:
+ other: Editor
+ desc:
+ other: First post edit.
+ first_flag:
+ name:
+ other: First Flag
+ desc:
+ other: First flagged a post.
+ first_upvote:
+ name:
+ other: First Upvote
+ desc:
+ other: First up voted a post.
+ first_link:
+ name:
+ other: First Link
+ desc:
+ other: First added a link to another post.
+ first_reaction:
+ name:
+ other: First Reaction
+ desc:
+ other: First reacted to the post.
+ first_share:
+ name:
+ other: First Share
+ desc:
+ other: First shared a post.
+ scholar:
+ name:
+ other: Scholar
+ desc:
+ other: Asked a question and accepted an answer.
+ commentator:
+ name:
+ other: Commentator
+ desc:
+ other: Leave 5 comments.
+ new_user_of_the_month:
+ name:
+ other: New User of the Month
+ desc:
+ other: Outstanding contributions in their first month.
+ read_guidelines:
+ name:
+ other: Read Guidelines
+ desc:
+ other: Read the [community guidelines].
+ reader:
+ name:
+ other: Reader
+ desc:
+ other: Read every answers in a topic with more than 10 answers.
+ welcome:
+ name:
+ other: Welcome
+ desc:
+ other: Received a up vote.
+ nice_share:
+ name:
+ other: Nice Share
+ desc:
+ other: Shared a post with 25 unique visitors.
+ good_share:
+ name:
+ other: Good Share
+ desc:
+ other: Shared a post with 300 unique visitors.
+ great_share:
+ name:
+ other: Great Share
+ desc:
+ other: Shared a post with 1000 unique visitors.
+ out_of_love:
+ name:
+ other: Out of Love
+ desc:
+ other: Used 50 up votes in a day.
+ higher_love:
+ name:
+ other: Higher Love
+ desc:
+ other: Used 50 up votes in a day 5 times.
+ crazy_in_love:
+ name:
+ other: Crazy in Love
+ desc:
+ other: Used 50 up votes in a day 20 times.
+ promoter:
+ name:
+ other: Promoter
+ desc:
+ other: Invited a user.
+ campaigner:
+ name:
+ other: Campaigner
+ desc:
+ other: Invited 3 basic users.
+ champion:
+ name:
+ other: Champion
+ desc:
+ other: Invited 5 members.
+ thank_you:
+ name:
+ other: Thank You
+ desc:
+ other: Has 20 up voted posts and gave 10 up votes.
+ gives_back:
+ name:
+ other: Gives Back
+ desc:
+ other: Has 100 up voted posts and gave 100 up votes.
+ empathetic:
+ name:
+ other: Empathetic
+ desc:
+ other: Has 500 up voted posts and gave 1000 up votes.
+ enthusiast:
+ name:
+ other: Enthusiast
+ desc:
+ other: Visited 10 consecutive days.
+ aficionado:
+ name:
+ other: Aficionado
+ desc:
+ other: Visited 100 consecutive days.
+ devotee:
+ name:
+ other: Devotee
+ desc:
+ other: Visited 365 consecutive days.
+ anniversary:
+ name:
+ other: Anniversary
+ desc:
+ other: Active member for a year, posted at least once.
+ appreciated:
+ name:
+ other: Appreciated
+ desc:
+ other: Received 1 up vote on 20 posts.
+ respected:
+ name:
+ other: Respected
+ desc:
+ other: Received 2 up votes on 100 posts.
+ admired:
+ name:
+ other: Admired
+ desc:
+ other: Received 5 up votes on 300 posts.
+ solved:
+ name:
+ other: Solved
+ desc:
+ other: Have an answer be accepted.
+ guidance_counsellor:
+ name:
+ other: Guidance Counsellor
+ desc:
+ other: Have 10 answers be accepted.
+ know_it_all:
+ name:
+ other: Know-it-All
+ desc:
+ other: Have 50 answers be accepted.
+ solution_institution:
+ name:
+ other: Solution Institution
+ desc:
+ other: Have 150 answers be accepted.
+ nice_answer:
+ name:
+ other: Nice Answer
+ desc:
+ other: Answer score of 10 or more.
+ good_answer:
+ name:
+ other: Good Answer
+ desc:
+ other: Answer score of 25 or more.
+ great_answer:
+ name:
+ other: Great Answer
+ desc:
+ other: Answer score of 50 or more.
+ nice_question:
+ name:
+ other: Nice Question
+ desc:
+ other: Question score of 10 or more.
+ good_question:
+ name:
+ other: Good Question
+ desc:
+ other: Question score of 25 or more.
+ great_question:
+ name:
+ other: Great Question
+ desc:
+ other: Question score of 50 or more.
+ popular_question:
+ name:
+ other: Popular Question
+ desc:
+ other: Question with 500 views.
+ notable_question:
+ name:
+ other: Notable Question
+ desc:
+ other: Question with 1,000 views.
+ famous_question:
+ name:
+ other: Famous Question
+ desc:
+ other: Question with 5,000 views.
+ popular_link:
+ name:
+ other: Popular Link
+ desc:
+ other: Posted an external link with 50 clicks.
+ hot_link:
+ name:
+ other: Hot Link
+ desc:
+ other: Posted an external link with 300 clicks.
+ famous_link:
+ name:
+ other: Famous Link
+ desc:
+ other: Posted an external link with 100 clicks.
+ default_badge_groups:
+ getting_started:
+ name:
+ other: Getting Started
+ community:
+ name:
+ other: Community
+ posting:
+ name:
+ other: Posting
+# The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: Sådan formaterer du
+ desc: >-
+
mention a post: #post_id
to make links
<https://url.com>
[Title](https://url.com)
put returns between paragraphs
_italic_ or **bold**
indent code by 4 spaces
quote by placing > at start of line
backtick escapes `like _this_`
create code fences with backticks `
``` code here ```
+ pagination:
+ prev: Forrige
+ next: Næste
+ page_title:
+ question: Spørgsmål
+ questions: Spørgsmål
+ tag: Tag
+ tags: Tags
+ tag_wiki: tag wiki
+ create_tag: Opret tag
+ edit_tag: Rediger tag
+ ask_a_question: Tilføj spørgsmål
+ edit_question: Rediger spørgsmål
+ edit_answer: Rediger Svar
+ search: Søg
+ posts_containing: Indlæg som indeholder
+ settings: Indstillinger
+ notifications: Notifikationer
+ login: Log Ind
+ sign_up: Tilmeld dig
+ account_recovery: Konto-gendannelse
+ account_activation: Aktivering af konto
+ confirm_email: Bekræft e-mail
+ account_suspended: Konto suspenderet
+ admin: Administrator
+ change_email: Ændre E-Mail
+ install: Answer Installation
+ upgrade: Answer Opgradering
+ maintenance: Vedligeholdelse af websted
+ users: Brugere
+ oauth_callback: Behandler
+ http_404: HTTP Fejl 404
+ http_50X: Http Fejl 500
+ http_403: HTTP Fejl 403
+ logout: Log Ud
+ notifications:
+ title: Notifikationer
+ inbox: Indbakke
+ achievement: Bedrifter
+ new_alerts: Nye adviseringer
+ all_read: Markér alle som læst
+ show_more: Vis mere
+ someone: Nogen
+ inbox_type:
+ all: Alle
+ posts: Indlæg
+ invites: Invitationer
+ votes: Stemmer
+ answer: Answer
+ question: Question
+ badge_award: Badge
+ suspended:
+ title: Din konto er blevet suspenderet
+ until_time: "Din konto blev suspenderet indtil {{ time }}."
+ forever: Denne bruger blev suspenderet for evigt.
+ end: Du opfylder ikke en fællesskabsretningslinje.
+ contact_us: Kontakt os
+ editor:
+ blockquote:
+ text: Citatblok
+ bold:
+ text: Fed
+ chart:
+ text: Diagram
+ flow_chart: Flow- diagram
+ sequence_diagram: Sekvensdiagram
+ class_diagram: Klassediagram
+ state_diagram: Tilstands-diagram
+ entity_relationship_diagram: Enheds-forhold-diagram
+ user_defined_diagram: Brugerdefineret diagram
+ gantt_chart: Gantt- diagram
+ pie_chart: Cirkeldiagram
+ code:
+ text: Kode-eksempel
+ add_code: Tilføj kodeeksempel
+ form:
+ fields:
+ code:
+ label: Kode
+ msg:
+ empty: Kode skal udfyldes.
+ language:
+ label: Sprog
+ placeholder: Automatisk detektering
+ btn_cancel: Annuller
+ btn_confirm: Tilføj
+ formula:
+ text: Formel
+ options:
+ inline: Indlejret formel
+ block: Formel blok
+ heading:
+ text: Overskrift
+ options:
+ h1: Overskrift 1
+ h2: Overskrift 2
+ h3: Overskrift 3
+ h4: Overskrift 4
+ h5: Overskrift 5
+ h6: Overskrift 6
+ help:
+ text: Hjælp
+ hr:
+ text: Vandret streg
+ image:
+ text: Billede
+ add_image: Tilføj billede
+ tab_image: Upload billede
+ form_image:
+ fields:
+ file:
+ label: Billedfil
+ btn: Vælg billede
+ msg:
+ empty: Filen skal udfyldes.
+ only_image: Kun billedfiler er tilladt.
+ max_size: File size cannot exceed {{size}} MB.
+ desc:
+ label: Beskriveslse
+ tab_url: Billede-URL
+ form_url:
+ fields:
+ url:
+ label: Billede-URL
+ msg:
+ empty: Billede-URL skal udfyldes.
+ name:
+ label: Beskriveslse
+ btn_cancel: Annuller
+ btn_confirm: Tilføj
+ uploading: Uploader
+ indent:
+ text: Indrykning
+ outdent:
+ text: Udrykning
+ italic:
+ text: Fremhævning
+ link:
+ text: Link
+ add_link: Tilføj link
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL må ikke være tom.
+ name:
+ label: Beskriveslse
+ btn_cancel: Annuller
+ btn_confirm: Tilføj
+ ordered_list:
+ text: Nummereret liste
+ unordered_list:
+ text: Punktliste
+ table:
+ text: Tabel
+ heading: Overskrift
+ cell: Celle
+ file:
+ text: Attach files
+ not_supported: "Don’t support that file type. Try again with {{file_type}}."
+ max_size: "Attach files size cannot exceed {{size}} MB."
+ close_modal:
+ title: Jeg lukker dette indlæg fordi...
+ btn_cancel: Annuller
+ btn_submit: Indsend
+ remark:
+ empty: skal udfyldes.
+ msg:
+ empty: Vælg en grund.
+ report_modal:
+ flag_title: Jeg markerer for at rapportere dette indlæg som...
+ close_title: Jeg lukker dette indlæg fordi...
+ review_question_title: Gennemgå spørgsmål
+ review_answer_title: Gennemgå svar
+ review_comment_title: Gennemgå kommentar
+ btn_cancel: Annuller
+ btn_submit: Indsend
+ remark:
+ empty: skal udfyldes.
+ msg:
+ empty: Vælg en grund.
+ not_a_url: URL-format er forkert.
+ url_not_match: URL oprindelsen matcher ikke det aktuelle websted.
+ tag_modal:
+ title: Opret et nyt tag
+ form:
+ fields:
+ display_name:
+ label: Visnings-navn
+ msg:
+ empty: Visnings-navn skal udfyldes.
+ range: Visnings-navn på op til 35 tegn.
+ slug_name:
+ label: URL-slug
+ desc: URL slug op til 35 tegn.
+ msg:
+ empty: URL slug må ikke være tom.
+ range: URL slug op til 35 tegn.
+ character: URL slug indeholder ikke tilladte tegn.
+ desc:
+ label: Beskriveslse
+ revision:
+ label: Revision
+ edit_summary:
+ label: Rediger resumé
+ placeholder: >-
+ Forklar kort dine ændringer (korrigeret stavning, fast grammatik, forbedret formatering)
+ btn_cancel: Annuller
+ btn_submit: Indsend
+ btn_post: Send nyt tag
+ tag_info:
+ created_at: Oprettet
+ edited_at: Redigeret
+ history: Historik
+ synonyms:
+ title: Synonymer
+ text: Følgende tags vil blive genmappet til
+ empty: Ingen synonymer fundet.
+ btn_add: Tilføj et synonym
+ btn_edit: Rediger
+ btn_save: Gem
+ synonyms_text: Følgende tags vil blive genmappet til
+ delete:
+ title: Slet dette tag
+ tip_with_posts: >-
+
Du kan i stedet bruge redigeringslinket til at forfine og forbedre dit eksisterende svar.
+ empty: Svar skal udfyldes.
+ characters: indhold skal være mindst 6 tegn.
+ tips:
+ header_1: Tak for dit svar
+ li1_1: Vær sikker på at besvare spørgsmålet. Giv oplysninger og del din forskning.
+ li1_2: Begrund eventuelle udsagn med referencer eller personlige erfaringer.
+ header_2: Men undgå...
+ li2_1: Spørger om hjælp, søger afklaring, eller reagerer på andre svar.
+ reopen:
+ confirm_btn: Genåbn
+ title: Genåbn dette indlæg
+ content: Er du sikker på, at du vil genåbne?
+ list:
+ confirm_btn: Liste
+ title: Sæt dette indlæg på listen
+ content: Er du sikker på du vil sætte på listen?
+ unlist:
+ confirm_btn: Fjern fra listen
+ title: Fjern dette indlæg fra listen
+ content: Er du sikker på at du vil fjerne fra listen?
+ pin:
+ title: Fastgør dette indlæg
+ content: Er du sikker på, at du ønsker at fastgøre globalt? Dette indlæg vises øverst på alle indlægs-lister.
+ confirm_btn: Fastgør
+ delete:
+ title: Slet dette indlæg
+ question: >-
+ Vi anbefaler ikke, at sletter spørgsmål med svar, fordi det fratager fremtidige læsere denne viden.
Gentaget sletning af besvarede spørgsmål kan resultere i, at din konto bliver blokeret fra at spørge. Er du sikker på, at du ønsker at slette?
+ answer_accepted: >-
+
Vi anbefaler ikke at slette accepteret svar fordi det fratager fremtidige læsere denne viden.
Gentagen sletning af accepterede svar kan resultere i, at din konto bliver blokeret fra besvarelse. Er du sikker på, at du ønsker at slette?
+ other: Er du sikker på, at du vil slette?
+ tip_answer_deleted: Dette svar er blevet slettet
+ undelete_title: Genopret dette indlæg
+ undelete_desc: Er du sikker på du ønsker at genoprette?
+ btns:
+ confirm: Bekræft
+ cancel: Annuller
+ edit: Rediger
+ save: Gem
+ delete: Slet
+ undelete: Genopret
+ list: Sæt på liste
+ unlist: Fjern fra liste
+ unlisted: Fjernet fra liste
+ login: Log ind
+ signup: Opret konto
+ logout: Log Ud
+ verify: Verificér
+ create: Create
+ approve: Godkend
+ reject: Afvis
+ skip: Spring Over
+ discard_draft: Kassér udkast
+ pinned: Fastgjort
+ all: Alle
+ question: Spørgsmål
+ answer: Svar
+ comment: Kommentar
+ refresh: Genopfrisk
+ resend: Send igen
+ deactivate: Deaktiver
+ active: Aktiv
+ suspend: Suspendér
+ unsuspend: Ophæv suspendering
+ close: Luk
+ reopen: Genåbn
+ ok: Ok
+ light: Lys
+ dark: Mørk
+ system_setting: Systemindstilling
+ default: Standard
+ reset: Nulstil
+ tag: Tag
+ post_lowercase: indlæg
+ filter: Filtrer
+ ignore: Ignorér
+ submit: Indsend
+ normal: Normal
+ closed: Lukket
+ deleted: Slettet
+ deleted_permanently: Deleted permanently
+ pending: Ventende
+ more: Mere
+ view: View
+ card: Card
+ compact: Compact
+ display_below: Display below
+ always_display: Always display
+ or: or
+ back_sites: Back to sites
+ search:
+ title: Søgeresultater
+ keywords: Nøgleord
+ options: Muligheder
+ follow: Følg
+ following: Følger
+ counts: "{{count}} Resultater"
+ more: Mere
+ sort_btns:
+ relevance: Relevans
+ newest: Nyeste
+ active: Aktiv
+ score: Bedømmelse
+ more: Mere
+ tips:
+ title: Avancerede Søgetips
+ tag: "<1>[tag]1> søgning med et tag"
+ user: "<1>user:username1> søgning efter forfatter"
+ answer: "<1>answers:01> ubesvarede spørgsmål"
+ score: "<1>score:31> indlæg med 3+ score"
+ question: "<1>is:question1> søgespørgsmål"
+ is_answer: "<1>is:answer1> søgesvar"
+ empty: Vi kunne ikke finde noget. Prøv forskellige eller mindre specifikke søgeord.
+ share:
+ name: Del
+ copy: Kopiér link
+ via: Del indlæg via...
+ copied: Kopieret
+ facebook: Del på Facebook
+ twitter: Share to X
+ cannot_vote_for_self: Du kan ikke stemme på dit eget indlæg.
+ modal_confirm:
+ title: Fejl...
+ delete_permanently:
+ title: Delete permanently
+ content: Are you sure you want to delete permanently?
+ account_result:
+ success: Din nye konto er bekræftet. Du vil blive omdirigeret til hjemmesiden.
+ link: Fortsæt til startside
+ oops: Hovsa!
+ invalid: Linket, du brugte, virker ikke længere.
+ confirm_new_email: Din e-mail er blevet opdateret.
+ confirm_new_email_invalid: >-
+ Beklager, dette bekræftelseslink er ikke længere gyldigt. Måske blev din e-mail allerede ændret?
+ unsubscribe:
+ page_title: Afmeld
+ success_title: Afmelding Lykkedes
+ success_desc: Du er blevet fjernet fra denne abonnentliste og vil ikke modtage yderligere e-mails fra os.
+ link: Skift indstillinger
+ question:
+ following_tags: Følger Tags
+ edit: Rediger
+ save: Gem
+ follow_tag_tip: Følg tags for at udvælge dine spørgsmål.
+ hot_questions: Populære Spørgsmål
+ all_questions: Alle Spørgsmål
+ x_questions: "{{ count }} Spørgsmål"
+ x_answers: "{{ count }} svar"
+ questions: Spørgsmål
+ answers: Svar
+ newest: Nyeste
+ active: Aktiv
+ hot: Populært
+ frequent: Frequent
+ recommend: Recommend
+ score: Bedømmelse
+ unanswered: Ubesvaret
+ modified: ændret
+ answered: besvaret
+ asked: spurgt
+ closed: lukket
+ follow_a_tag: Følg et tag
+ more: Mere
+ personal:
+ overview: Oversigt
+ answers: Svar
+ answer: svar
+ questions: Spørgsmål
+ question: spørgsmål
+ bookmarks: Bogmærker
+ reputation: Omdømme
+ comments: Kommentarer
+ votes: Stemmer
+ badges: Badges
+ newest: Nyeste
+ score: Bedømmelse
+ edit_profile: Rediger profil
+ visited_x_days: "Besøgte {{ count }} dage"
+ viewed: Set
+ joined: Tilmeldt
+ comma: ","
+ last_login: Set
+ about_me: Om Mig
+ about_me_empty: "// Hej, Verden!"
+ top_answers: Populære Svar
+ top_questions: Populære Spørgsmål
+ stats: Statistik
+ list_empty: Ingen indlæg fundet. Måske vil du vælge en anden fane?
+ content_empty: No posts found.
+ accepted: Accepteret
+ answered: besvaret
+ asked: spurgt
+ downvoted: nedstemt
+ mod_short: MOD
+ mod_long: Moderatorer
+ x_reputation: omdømme
+ x_votes: stemmer modtaget
+ x_answers: svar
+ x_questions: spørgsmål
+ recent_badges: Recent Badges
+ install:
+ title: Installation
+ next: Næste
+ done: Udført
+ config_yaml_error: Kan ikke oprette filen config.yaml.
+ lang:
+ label: Vælg et sprog
+ db_type:
+ label: Database type
+ db_username:
+ label: Brugernavn
+ placeholder: rod
+ msg: Brugernavn skal udfyldes.
+ db_password:
+ label: Adgangskode
+ placeholder: rod
+ msg: Adgangskoden skal udfyldes.
+ db_host:
+ label: Database host
+ placeholder: "db:3306"
+ msg: Database host skal udfyldes.
+ db_name:
+ label: Database navn
+ placeholder: answer
+ msg: Databasenavn skal udfyldes.
+ db_file:
+ label: Databasefil
+ placeholder: /data/answer.db
+ msg: Databasefil skal udfyldes.
+ ssl_enabled:
+ label: Enable SSL
+ ssl_enabled_on:
+ label: On
+ ssl_enabled_off:
+ label: Off
+ ssl_mode:
+ label: SSL Mode
+ ssl_root_cert:
+ placeholder: sslrootcert file path
+ msg: Path to sslrootcert file cannot be empty
+ ssl_cert:
+ placeholder: sslcert file path
+ msg: Path to sslcert file cannot be empty
+ ssl_key:
+ placeholder: sslkey file path
+ msg: Path to sslkey file cannot be empty
+ config_yaml:
+ title: Opret config.yaml
+ label: Filen config.yaml blev oprettet.
+ desc: >-
+ Du kan manuelt oprette filen <1>config.yaml1> i mappen <1>/var/wwww/xxx/1> og indsætte følgende tekst i den.
+ info: Når du har gjort det, skal du klikke på "Næste" knappen.
+ site_information: Websted Information
+ admin_account: Administrator Konto
+ site_name:
+ label: Websted navn
+ msg: Websted-navn skal udfyldes.
+ msg_max_length: Webstedsnavn kan ikke være længere end 30 tegn.
+ site_url:
+ label: Websted URL
+ text: Adressen på dit websted.
+ msg:
+ empty: Webstedets URL skal udfyldes.
+ incorrect: Websteds URL forkert format.
+ max_length: WebstedsURL skal højst være 512 tegn.
+ contact_email:
+ label: Kontakt e-mail
+ text: E-mailadresse på nøglekontakt ansvarlig for dette websted.
+ msg:
+ empty: Kontakt-e-mail skal udfyldes.
+ incorrect: Ugyldig kontakt e-mail adresse.
+ login_required:
+ label: Privat
+ switch: Log ind påkrævet
+ text: Kun brugere som er logget ind har adgang til dette fællesskab.
+ admin_name:
+ label: Navn
+ msg: Navn skal udfyldes.
+ character: 'Must use the character set "a-z", "A-Z", "0-9", " - . _"'
+ msg_max_length: Name must be between 2 to 30 characters in length.
+ admin_password:
+ label: Adgangskode
+ text: >-
+ Du skal bruge denne adgangskode for at logge ind. Opbevar den et sikkert sted.
+ msg: Adgangskoden skal udfyldes.
+ msg_min_length: Adgangskoden skal være mindst 8 tegn.
+ msg_max_length: Adgangskoden skal højst udgøre 32 tegn.
+ admin_confirm_password:
+ label: "Confirm Password"
+ text: "Please re-enter your password to confirm."
+ msg: "Confirm password does not match."
+ admin_email:
+ label: E-mail
+ text: Du skal bruge denne e-mail for at logge ind.
+ msg:
+ empty: E-mail skal udfyldes.
+ incorrect: Ugyldig e-mail adresse.
+ ready_title: Dit websted er klar
+ ready_desc: >-
+ Hvis du nogensinde har lyst til at ændre flere indstillinger, kan du besøge <1>admin-sektion1>; find det i site-menuen.
+ good_luck: "Hav det sjovt, og held og lykke!"
+ warn_title: Advarsel
+ warn_desc: >-
+ Filen <1>config.yaml1> findes allerede. Hvis du har brug for at nulstille en af konfigurationselementerne i denne fil, så slet den først.
+ install_now: Du kan prøve <1>at installere nu1>.
+ installed: Allerede installeret
+ installed_desc: >-
+ Du synes allerede at være installeret. For at geninstallere skal du først rydde dine gamle databasetabeller.
+ db_failed: Database forbindelse mislykkedes
+ db_failed_desc: >-
+ Det betyder enten, at databaseinformationen i din <1>config. aml1> fil er forkert eller at kontakt med databaseserveren ikke kunne etableres. Dette kan betyde, at din værts databaseserver er nede.
+ counts:
+ views: visninger
+ votes: stemmer
+ answers: svar
+ accepted: Accepteret
+ page_error:
+ http_error: HTTP Fejl {{ code }}
+ desc_403: Du har ikke adgang til denne side.
+ desc_404: Denne side findes desværre ikke.
+ desc_50X: Der skete en fejl på serveren og den kunne ikke fuldføre din anmodning.
+ back_home: Tilbage til forsiden
+ page_maintenance:
+ desc: "Vi laver vedligeholdelse, men er snart tilbage igen."
+ nav_menus:
+ dashboard: Kontrolpanel
+ contents: Indhold
+ questions: Spørgsmål
+ answers: Svar
+ users: Brugere
+ badges: Badges
+ flags: Anmeldelser
+ settings: Indstillinger
+ general: Generelt
+ interface: Brugerflade
+ smtp: SMTP
+ branding: Branding
+ legal: Jura
+ write: Skriv
+ tos: Betingelser for brug
+ privacy: Privatliv
+ seo: SEO
+ customize: Tilpas
+ themes: Temaer
+ css_html: CSS/HTML
+ login: Log Ind
+ privileges: Rettigheder
+ plugins: Plugins
+ installed_plugins: Installerede Plugins
+ website_welcome: Velkommen til {{site_name}}
+ user_center:
+ login: Log Ind
+ qrcode_login_tip: Brug {{ agentName }} til at scanne QR-koden og logge ind.
+ login_failed_email_tip: Log ind mislykkedes, tillad denne app at få adgang til dine e-mail-oplysninger, før du prøver igen.
+ badges:
+ modal:
+ title: Congratulations
+ content: You've earned a new badge.
+ close: Close
+ confirm: View badges
+ title: Badges
+ awarded: Awarded
+ earned_×: Earned ×{{ number }}
+ ×_awarded: "{{ number }} awarded"
+ can_earn_multiple: You can earn this multiple times.
+ earned: Earned
+ admin:
+ admin_header:
+ title: Administrator
+ dashboard:
+ title: Kontrolpanel
+ welcome: Velkommen til Administration!
+ site_statistics: Statistik for webstedet
+ questions: "Spørgsmål:"
+ resolved: "Resolved:"
+ unanswered: "Unanswered:"
+ answers: "Svar:"
+ comments: "Kommentarer:"
+ votes: "Stemmer:"
+ users: "Brugere:"
+ flags: "Anmeldelser:"
+ reviews: "Gennemgange:"
+ site_health: Websteds sundhed
+ version: "Version:"
+ https: "HTTPS:"
+ upload_folder: "Upload mappe:"
+ run_mode: "Kørselstilstand:"
+ private: Privat
+ public: Offentlig
+ smtp: "SMTP:"
+ timezone: "Tidszone:"
+ system_info: System information
+ go_version: "Go version:"
+ database: "Database:"
+ database_size: "Database størrelse:"
+ storage_used: "Anvendt lagerplads:"
+ uptime: "Oppetid:"
+ links: Links
+ plugins: Plugins
+ github: GitHub
+ blog: Blog
+ contact: Kontakt os
+ forum: Forum
+ documents: Dokumenter
+ feedback: Tilbagemelding
+ support: Support
+ review: Gennemgå
+ config: Konfiguration
+ update_to: Opdatér til
+ latest: Seneste
+ check_failed: Tjek mislykkedes
+ "yes": "Ja"
+ "no": "Nej"
+ not_allowed: Ikke tilladt
+ allowed: Tilladt
+ enabled: Aktiveret
+ disabled: Deaktiveret
+ writable: Skrivbar
+ not_writable: Ikke skrivbar
+ flags:
+ title: Anmeldelser
+ pending: Ventende
+ completed: Gennemført
+ flagged: Anmeldt
+ flagged_type: Anmeldt{{ type }}
+ created: Oprettet
+ action: Handling
+ review: Gennemgå
+ user_role_modal:
+ title: Skift brugerrolle til...
+ btn_cancel: Annuller
+ btn_submit: Indsend
+ new_password_modal:
+ title: Angiv ny adgangskode
+ form:
+ fields:
+ password:
+ label: Adgangskode
+ text: Brugeren vil blive logget ud og skal logge ind igen.
+ msg: Adgangskoden skal være på 8- 32 tegn.
+ btn_cancel: Annuller
+ btn_submit: Indsend
+ edit_profile_modal:
+ title: Rediger profil
+ form:
+ fields:
+ display_name:
+ label: Visnings-navn
+ msg_range: Visnings-navn på op til 30 tegn.
+ username:
+ label: Brugernavn
+ msg_range: Brugernavn op til 30 tegn.
+ email:
+ label: E-mail
+ msg_invalid: Ugyldig E-Mail Adresse.
+ edit_success: Redigering lykkedes
+ btn_cancel: Annuller
+ btn_submit: Indsend
+ user_modal:
+ title: Tilføj ny bruger
+ form:
+ fields:
+ users:
+ label: Masse-tilføj bruger
+ placeholder: "John Smith, john@example.com, BUSYopr2\nAlice, alice@example.com, fpDntV8q"
+ text: Adskil “navn, e-mail, adgangskode” med kommaer. Én bruger pr. linje.
+ msg: "Indtast venligst brugerens e-mail, en pr. linje."
+ display_name:
+ label: Visnings-navn
+ msg: Display name must be 2-30 characters in length.
+ email:
+ label: E-mail
+ msg: E-mail er ugyldig.
+ password:
+ label: Adgangskode
+ msg: Adgangskoden skal være 8- 32 tegn.
+ btn_cancel: Annuller
+ btn_submit: Indsend
+ users:
+ title: Brugere
+ name: Navn
+ email: E-mail
+ reputation: Omdømme
+ created_at: Oprettet Tidspunkt
+ delete_at: Slettet Tidspunkt
+ suspend_at: Suspenderet Tidspunkt
+ status: Status
+ role: Rolle
+ action: Handling
+ change: Ændre
+ all: Alle
+ staff: Ansatte
+ more: Mere
+ inactive: Inaktiv
+ suspended: Suspenderet
+ deleted: Slettet
+ normal: Normal
+ Moderator: Moderator
+ Admin: Administrator
+ User: Bruger
+ filter:
+ placeholder: "Filtrer efter navn, user:id"
+ set_new_password: Angiv ny adgangskode
+ edit_profile: Rediger profil
+ change_status: Ændre status
+ change_role: Ændre rolle
+ show_logs: Vis logfiler
+ add_user: Tilføj bruger
+ deactivate_user:
+ title: Deaktiver bruger
+ content: En inaktiv bruger skal bekræfte deres e-mail igen.
+ delete_user:
+ title: Slet denne bruger
+ content: Er du sikker på, at du vil slette denne bruger? Dette er permanent!
+ remove: Fjern deres indhold
+ label: Fjern alle spørgsmål, svar, kommentarer osv.
+ text: Tjek ikke dette, hvis du kun ønsker at slette brugerens konto.
+ suspend_user:
+ title: Suspendér denne bruger
+ content: En suspenderet bruger kan ikke logge ind.
+ questions:
+ page_title: Spørgsmål
+ unlisted: Fjernet fra liste
+ post: Indlæg
+ votes: Stemmer
+ answers: Svar
+ created: Oprettet
+ status: Status
+ action: Handling
+ change: Ændre
+ pending: Ventende
+ filter:
+ placeholder: "Filtrer efter titel, question:id"
+ answers:
+ page_title: Svar
+ post: Indlæg
+ votes: Stemmer
+ created: Oprettet
+ status: Status
+ action: Handling
+ change: Ændre
+ filter:
+ placeholder: "Filtrer efter titel, answer:id"
+ general:
+ page_title: Generelt
+ name:
+ label: Websted navn
+ msg: Websted-navn skal udfyldes.
+ text: "Navnet på dette websted, som bruges i title-tagget."
+ site_url:
+ label: Websted URL
+ msg: Websted-URL skal udfyldes.
+ validate: Angiv et gyldigt URL.
+ text: Adressen på dit websted.
+ short_desc:
+ label: Kort beskrivelse af websted
+ msg: Kort beskrivelse af websted skal udfyldes.
+ text: "Kort beskrivelse, som anvendt i title-tag på hjemmesiden."
+ desc:
+ label: Websted beskrivelse
+ msg: Webstedsbeskrivelse skal udfyldes.
+ text: "Beskriv dette websted i en sætning, som bruges i meta description tagget."
+ contact_email:
+ label: Kontakt e-mail
+ msg: Kontakt-e-mail skal udfyldes.
+ validate: Kontakt-e-mail er ugyldig.
+ text: E-mailadresse på nøglekontakt ansvarlig for dette websted.
+ check_update:
+ label: Opdatering af software
+ text: Søg automatisk efter opdateringer
+ interface:
+ page_title: Brugerflade
+ language:
+ label: Brugerflade sprog
+ msg: Brugerflade-sprog skal udfyldes.
+ text: Brugergrænseflade sprog. Det vil ændres, når du opdaterer siden.
+ time_zone:
+ label: Tidszone
+ msg: Tidszone skal udfyldes.
+ text: Vælg en by i samme tidszone som dig selv.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: Fra e-mail
+ msg: Fra e-mail skal udfyldes.
+ text: E-mail-adressen som e-mails sendes fra.
+ from_name:
+ label: Fra navn
+ msg: Fra navn skal udfyldes.
+ text: Navnet som e-mails sendes fra.
+ smtp_host:
+ label: SMTP host
+ msg: SMTP host skal udfyldes.
+ text: Din mail-server.
+ encryption:
+ label: Kryptering
+ msg: Kryptering skal udfyldes.
+ text: For de fleste servere er SSL den anbefalede indstilling.
+ ssl: SSL
+ tls: TLS
+ none: Ingen
+ smtp_port:
+ label: SMTP port
+ msg: SMTP port skal være nummer 1 ~ 65535.
+ text: Porten til din mailserver.
+ smtp_username:
+ label: SMTP brugernavn
+ msg: SMTP brugernavn skal udfyldes.
+ smtp_password:
+ label: SMTP adgangskode
+ msg: SMTP adgangskode skal udfyldes.
+ test_email_recipient:
+ label: Test e-mail modtagere
+ text: Angiv e-mail-adresse, der vil modtage test-beskedder.
+ msg: Test e-mail modtagere er ugyldige
+ smtp_authentication:
+ label: Aktiver autentificering
+ title: SMTP autentificering
+ msg: SMTP autentificering skal udfyldes.
+ "yes": "Ja"
+ "no": "Nej"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo
+ msg: Logo skal udfyldes.
+ text: Logoet billede øverst til venstre på dit websted. Brug et bredt rektangulært billede med en højde på 56 og et breddeforhold større end 3:1. Hvis efterladt tom, vil webstedets titeltekst blive vist.
+ mobile_logo:
+ label: Mobil logo
+ text: Logoet bruges på mobile version af dit websted. Brug et bredt rektangulært billede med en højde på 56. Hvis efterladt tom, vil billedet fra indstillingen "logo" blive brugt.
+ square_icon:
+ label: Kvadratisk ikon
+ msg: Kvadratisk ikon skal udfyldes.
+ text: Billede brugt som basis for metadata-ikoner. Bør være større end 512x512.
+ favicon:
+ label: Favicon
+ text: En favicon til dit websted. For at fungere korrekt over en CDN skal det være en png. Vil blive ændret til 32x32. Hvis efterladt tomt, vil "firkantet ikon" blive brugt.
+ legal:
+ page_title: Jura
+ terms_of_service:
+ label: Betingelser for brug
+ text: "Du kan tilføje servicevilkår her. Hvis du allerede har et dokument hostet et andet sted, så angiv den fulde URL her."
+ privacy_policy:
+ label: Privatlivspolitik
+ text: "Du kan tilføje privatlivspolitik indhold her. Hvis du allerede har et dokument hostet et andet sted, så angiv den fulde URL her."
+ external_content_display:
+ label: External content
+ text: "Content includes images, videos, and media embedded from external websites."
+ always_display: Always display external content
+ ask_before_display: Ask before displaying external content
+ write:
+ page_title: Skriv
+ restrict_answer:
+ title: Skriv svar
+ label: Hver bruger kan kun skrive et svar for det samme spørgsmål
+ text: "Slå fra for at give brugerne mulighed for at skrive flere svar på det samme spørgsmål, hvilket kan forårsage svar at være ufokuseret."
+ recommend_tags:
+ label: Anbefal tags
+ text: "Anbefal tags vil som standard blive vist i dropdown-listen."
+ msg:
+ contain_reserved: "anbefalede tags kan ikke indeholde reserverede tags"
+ required_tag:
+ title: Angiv påkrævede tags
+ label: Sæt “Anbefal tags” som påkrævede tags
+ text: "Hvert nyt spørgsmål skal have mindst et anbefalet tag."
+ reserved_tags:
+ label: Reserverede tags
+ text: "Reserverede tags kan kun bruges af moderator."
+ image_size:
+ label: Max image size (MB)
+ text: "The maximum image upload size."
+ attachment_size:
+ label: Max attachment size (MB)
+ text: "The maximum attachment files upload size."
+ image_megapixels:
+ label: Max image megapixels
+ text: "Maximum number of megapixels allowed for an image."
+ image_extensions:
+ label: Authorized image extensions
+ text: "A list of file extensions allowed for image display, separate with commas."
+ attachment_extensions:
+ label: Authorized attachment extensions
+ text: "A list of file extensions allowed for upload, separate with commas. WARNING: Allowing uploads may cause security issues."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Permalink
+ text: Brugerdefinerede URL-strukturer kan forbedre brugervenlighed og fremadrettet kompatibilitet af dine links.
+ robots:
+ label: robots.txt
+ text: Dette vil permanent tilsidesætte eventuelle relaterede webstedsindstillinger.
+ themes:
+ page_title: Temaer
+ themes:
+ label: Temaer
+ text: Vælg et eksisterende tema.
+ color_scheme:
+ label: Farveskema
+ navbar_style:
+ label: Navigations-bjælke stil
+ primary_color:
+ label: Primær farve
+ text: Ændre farver, der bruges af dine temaer
+ css_and_html:
+ page_title: CSS og HTML
+ custom_css:
+ label: Brugerdefineret CSS
+ text: >
+
+ head:
+ label: Head
+ text: >
+
+ header:
+ label: Overskrift
+ text: >
+
+ footer:
+ label: Sidefod
+ text: Dette indsættes før </body>.
+ sidebar:
+ label: Sidebjælke
+ text: Dette vil indsætte i sidebjælken.
+ login:
+ page_title: Log Ind
+ membership:
+ title: Medlemskab
+ label: Tillad nye registreringer
+ text: Slå fra for at forhindre at nogen opretter en ny konto.
+ email_registration:
+ title: E-mail-registrering
+ label: Tillad e-mail registrering
+ text: Slå fra for at forhindre, at der oprettes en ny konto via e-mail.
+ allowed_email_domains:
+ title: Tilladte e-mail-domæner
+ text: E-mail-domæner som brugere skal registrere konti med. Et domæne pr. linje. Ignoreres når tomt.
+ private:
+ title: Privat
+ label: Log ind påkrævet
+ text: Kun brugere som er logget ind har adgang til dette fællesskab.
+ password_login:
+ title: Adgangskode log ind
+ label: Tillad e-mail og adgangskode login
+ text: "ADVARSEL: Hvis du slår fra, kan du muligvis ikke logge ind, hvis du ikke tidligere har konfigureret en anden loginmetode."
+ installed_plugins:
+ title: Installerede Plugins
+ plugin_link: Plugins udvider og udvider funktionaliteten. Du kan finde plugins i <1>Plugin Repository1>.
+ filter:
+ all: Alle
+ active: Aktiv
+ inactive: Inaktiv
+ outdated: Forældet
+ plugins:
+ label: Plugins
+ text: Vælg et eksisterende plugin.
+ name: Navn
+ version: Version
+ status: Status
+ action: Handling
+ deactivate: Deaktiver
+ activate: Aktivér
+ settings: Indstillinger
+ settings_users:
+ title: Brugere
+ avatar:
+ label: Standard avatar
+ text: For brugere uden en brugerdefineret avatar.
+ gravatar_base_url:
+ label: Gravatar base-URL
+ text: URL for Gravatar-udbyderens API-base. Ignoreres når tom.
+ profile_editable:
+ title: Profil redigerbar
+ allow_update_display_name:
+ label: Tillad brugere at ændre deres visningsnavn
+ allow_update_username:
+ label: Tillad brugere at ændre deres brugernavn
+ allow_update_avatar:
+ label: Tillad brugere at ændre deres profilbillede
+ allow_update_bio:
+ label: Tillad brugere at ændre deres om-mig
+ allow_update_website:
+ label: Tillad brugere at ændre deres hjemmeside
+ allow_update_location:
+ label: Tillad brugere at ændre deres placering
+ privilege:
+ title: Rettigheder
+ level:
+ label: Omdømme påkrævet niveau
+ text: Vælg det omdømme der kræves for rettighederne
+ msg:
+ should_be_number: input skal være et tal
+ number_larger_1: tal skal være lig med eller større end 1
+ badges:
+ action: Action
+ active: Active
+ activate: Activate
+ all: All
+ awards: Awards
+ deactivate: Deactivate
+ filter:
+ placeholder: Filter by name, badge:id
+ group: Group
+ inactive: Inactive
+ name: Name
+ show_logs: Show logs
+ status: Status
+ title: Badges
+ form:
+ optional: (valgfrit)
+ empty: skal udfyldes
+ invalid: er ugyldigt
+ btn_submit: Gem
+ not_found_props: "Nødvendig egenskab {{ key }} ikke fundet."
+ select: Vælg
+ page_review:
+ review: Gennemgå
+ proposed: foreslået
+ question_edit: Rediger spørgsmål
+ answer_edit: Svar redigér
+ tag_edit: Tag redigér
+ edit_summary: Rediger resumé
+ edit_question: Rediger spørgsmål
+ edit_answer: Rediger svar
+ edit_tag: Rediger tag
+ empty: Ingen gennemgangsopgaver tilbage.
+ approve_revision_tip: Godkender du denne revision?
+ approve_flag_tip: Godkender du denne anmeldelse?
+ approve_post_tip: Godkender du dette indlæg?
+ approve_user_tip: Godkender du denne bruger?
+ suggest_edits: Foreslåede redigeringer
+ flag_post: Anmeld indlæg
+ flag_user: Anmeld bruger
+ queued_post: Indlæg i kø
+ queued_user: Brugere i kø
+ filter_label: Type
+ reputation: omdømme
+ flag_post_type: Anmeld dette indlæg som {{ type }}.
+ flag_user_type: Anmeldte dette indlæg som {{ type }}.
+ edit_post: Rediger opslag
+ list_post: Sæt indlæg på liste
+ unlist_post: Fjern indlæg fra liste
+ timeline:
+ undeleted: genskabt
+ deleted: slettet
+ downvote: stem ned
+ upvote: stem op
+ accept: acceptér
+ cancelled: annulleret
+ commented: kommenteret
+ rollback: tilbagerul
+ edited: redigeret
+ answered: besvaret
+ asked: spurgt
+ closed: lukket
+ reopened: genåbnet
+ created: oprettet
+ pin: fastgjort
+ unpin: frigjort
+ show: sat på liste
+ hide: fjernet fra liste
+ title: "Historik for"
+ tag_title: "Tidslinje for"
+ show_votes: "Vis stemmer"
+ n_or_a: Ikke Relevant
+ title_for_question: "Tidslinje for"
+ title_for_answer: "Tidslinje for svar på {{ title }} af {{ author }}"
+ title_for_tag: "Tidslinje for tag"
+ datetime: Datetime
+ type: Type
+ by: Af
+ comment: Kommentar
+ no_data: "Vi kunne ikke finde noget."
+ users:
+ title: Brugere
+ users_with_the_most_reputation: Brugere med det højeste omdømme scorer denne uge
+ users_with_the_most_vote: Brugere, der stemte mest i denne uge
+ staffs: Vores fællesskabs personale
+ reputation: omdømme
+ votes: stemmer
+ prompt:
+ leave_page: Er du sikker på, at du vil forlade siden?
+ changes_not_save: Dine ændringer er muligvis ikke gemt.
+ draft:
+ discard_confirm: Er du sikker på, at du vil kassere dit udkast?
+ messages:
+ post_deleted: Dette indlæg er blevet slettet.
+ post_cancel_deleted: This post has been undeleted.
+ post_pin: Dette indlæg er blevet fastgjort.
+ post_unpin: Dette indlæg er blevet frigjort.
+ post_hide_list: Dette indlæg er blevet skjult fra listen.
+ post_show_list: Dette indlæg er blevet vist på listen.
+ post_reopen: Dette indlæg er blevet genåbnet.
+ post_list: Dette indlæg er blevet listet.
+ post_unlist: Dette indlæg er blevet aflistet.
+ post_pending: Dit indlæg afventer gennemgang. Dette er en forhåndsvisning, det vil være synligt, når det er blevet godkendt.
+ post_closed: This post has been closed.
+ answer_deleted: This answer has been deleted.
+ answer_cancel_deleted: This answer has been undeleted.
+ change_user_role: This user's role has been changed.
+ user_inactive: This user is already inactive.
+ user_normal: This user is already normal.
+ user_suspended: This user has been suspended.
+ user_deleted: This user has been deleted.
+ badge_activated: This badge has been activated.
+ badge_inactivated: This badge has been inactivated.
+ users_deleted: These users have been deleted.
+ posts_deleted: These questions have been deleted.
+ answers_deleted: These answers have been deleted.
+ copy: Copy to clipboard
+ copied: Copied
+ external_content_warning: External images/media are not displayed.
+
+
diff --git a/answer-data/i18n/de_DE.yaml b/answer-data/i18n/de_DE.yaml
new file mode 100644
index 0000000..c994b3a
--- /dev/null
+++ b/answer-data/i18n/de_DE.yaml
@@ -0,0 +1,2319 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# The following fields are used for back-end
+backend:
+ base:
+ success:
+ other: Erfolgreich.
+ unknown:
+ other: Unbekannter Fehler.
+ request_format_error:
+ other: Format der Anfrage ist ungültig.
+ unauthorized_error:
+ other: Nicht autorisiert.
+ database_error:
+ other: Datenbank-Fehler.
+ forbidden_error:
+ other: Verboten.
+ duplicate_request_error:
+ other: Doppelte Einreichung.
+ action:
+ report:
+ other: Melden
+ edit:
+ other: Bearbeiten
+ delete:
+ other: Löschen
+ close:
+ other: Schließen
+ reopen:
+ other: Wieder öffnen
+ forbidden_error:
+ other: Verboten.
+ pin:
+ other: Anpinnen
+ hide:
+ other: Von Liste nehmen
+ unpin:
+ other: Loslösen
+ show:
+ other: Liste
+ invite_someone_to_answer:
+ other: Bearbeiten
+ undelete:
+ other: Wiederherstellen
+ merge:
+ other: Merge
+ role:
+ name:
+ user:
+ other: Benutzer
+ admin:
+ other: Admin
+ moderator:
+ other: Moderator
+ description:
+ user:
+ other: Standard ohne speziellen Zugriff.
+ admin:
+ other: Habe die volle Berechtigung, auf die Seite zuzugreifen.
+ moderator:
+ other: Hat Zugriff auf alle Beiträge außer Admin-Einstellungen.
+ privilege:
+ level_1:
+ description:
+ other: Level 1 (weniger Reputation für privates Team, Gruppen)
+ level_2:
+ description:
+ other: Level 2 (niedrige Reputation für Startup-Community)
+ level_3:
+ description:
+ other: Level 3 (hohe Reputation für eine reife Community)
+ level_custom:
+ description:
+ other: Benutzerdefinierter Level
+ rank_question_add_label:
+ other: Fragen stellen
+ rank_answer_add_label:
+ other: Antwort schreiben
+ rank_comment_add_label:
+ other: Kommentar schreiben
+ rank_report_add_label:
+ other: Melden
+ rank_comment_vote_up_label:
+ other: Kommentar upvoten
+ rank_link_url_limit_label:
+ other: Mehr als 2 Links gleichzeitig posten
+ rank_question_vote_up_label:
+ other: Frage upvoten
+ rank_answer_vote_up_label:
+ other: Antwort upvoten
+ rank_question_vote_down_label:
+ other: Frage downvoten
+ rank_answer_vote_down_label:
+ other: Antwort downvoten
+ rank_invite_someone_to_answer_label:
+ other: Jemanden zum Antworten einladen
+ rank_tag_add_label:
+ other: Neuen Tag erstellen
+ rank_tag_edit_label:
+ other: Tag-Beschreibung bearbeiten (muss überprüft werden)
+ rank_question_edit_label:
+ other: Frage eines anderen bearbeiten (muss überarbeitet werden)
+ rank_answer_edit_label:
+ other: Antwort eines anderen bearbeiten (muss überarbeitet werden)
+ rank_question_edit_without_review_label:
+ other: Frage eines anderen ohne Überprüfung bearbeiten
+ rank_answer_edit_without_review_label:
+ other: Antwort eines anderen ohne Überprüfung bearbeiten
+ rank_question_audit_label:
+ other: Frageänderungen überprüfen
+ rank_answer_audit_label:
+ other: Bearbeitete Antworten überprüfen
+ rank_tag_audit_label:
+ other: Tag-Bearbeitungen überprüfen
+ rank_tag_edit_without_review_label:
+ other: Tag-Beschreibung ohne Überprüfung bearbeiten
+ rank_tag_synonym_label:
+ other: Tag-Synonyme verwalten
+ email:
+ other: E-Mail
+ e_mail:
+ other: E-Mail
+ password:
+ other: Passwort
+ pass:
+ other: Passwort
+ old_pass:
+ other: Current password
+ original_text:
+ other: Dieser Beitrag
+ email_or_password_wrong_error:
+ other: E-Mail und Passwort stimmen nicht überein.
+ error:
+ common:
+ invalid_url:
+ other: Ungültige URL.
+ status_invalid:
+ other: Ungültiger Status.
+ password:
+ space_invalid:
+ other: Passwort darf keine Leerzeichen enthalten.
+ admin:
+ cannot_update_their_password:
+ other: Du kannst dein Passwort nicht ändern.
+ cannot_edit_their_profile:
+ other: Du kannst dein Profil nicht bearbeiten.
+ cannot_modify_self_status:
+ other: Du kannst deinen Status nicht ändern.
+ email_or_password_wrong:
+ other: E-Mail und Password stimmen nicht überein.
+ answer:
+ not_found:
+ other: Antwort nicht gefunden.
+ cannot_deleted:
+ other: Keine Berechtigung zum Löschen.
+ cannot_update:
+ other: Keine Berechtigung zum Aktualisieren.
+ question_closed_cannot_add:
+ other: Fragen sind geschlossen und können nicht hinzugefügt werden.
+ content_cannot_empty:
+ other: Answer content cannot be empty.
+ comment:
+ edit_without_permission:
+ other: Kommentar kann nicht bearbeitet werden.
+ not_found:
+ other: Kommentar wurde nicht gefunden.
+ cannot_edit_after_deadline:
+ other: Die Kommentarzeit war zu lang, um sie zu ändern.
+ content_cannot_empty:
+ other: Comment content cannot be empty.
+ email:
+ duplicate:
+ other: E-Mail existiert bereits.
+ need_to_be_verified:
+ other: E-Mail muss überprüft werden.
+ verify_url_expired:
+ other: Die verifizierbare E-Mail-URL ist abgelaufen, bitte sende die E-Mail erneut.
+ illegal_email_domain_error:
+ other: E-Mails sind von dieser E-Mail-Domäne nicht erlaubt. Bitte verwende eine andere.
+ lang:
+ not_found:
+ other: Sprachdatei nicht gefunden.
+ object:
+ captcha_verification_failed:
+ other: Captcha ist falsch.
+ disallow_follow:
+ other: Es ist dir nicht erlaubt zu folgen.
+ disallow_vote:
+ other: Es ist dir nicht erlaubt abzustimmen.
+ disallow_vote_your_self:
+ other: Du kannst nicht für deinen eigenen Beitrag stimmen.
+ not_found:
+ other: Objekt nicht gefunden.
+ verification_failed:
+ other: Verifizierung fehlgeschlagen.
+ email_or_password_incorrect:
+ other: E-Mail und Passwort stimmen nicht überein.
+ old_password_verification_failed:
+ other: Die Überprüfung des alten Passworts ist fehlgeschlagen
+ new_password_same_as_previous_setting:
+ other: Das neue Passwort ist das gleiche wie das vorherige Passwort.
+ already_deleted:
+ other: Dieser Beitrag wurde gelöscht.
+ meta:
+ object_not_found:
+ other: Metaobjekt nicht gefunden
+ question:
+ already_deleted:
+ other: Dieser Beitrag wurde gelöscht.
+ under_review:
+ other: Ihr Beitrag wartet auf Überprüfung. Er wird sichtbar sein, nachdem er genehmigt wurde.
+ not_found:
+ other: Frage nicht gefunden.
+ cannot_deleted:
+ other: Keine Berechtigung zum Löschen.
+ cannot_close:
+ other: Keine Berechtigung zum Schließen.
+ cannot_update:
+ other: Keine Berechtigung zum Aktualisieren.
+ content_cannot_empty:
+ other: Content cannot be empty.
+ rank:
+ fail_to_meet_the_condition:
+ other: Ansehenssrang erfüllt die Bedingung nicht.
+ vote_fail_to_meet_the_condition:
+ other: Danke für dein Feedback. Du brauchst mindestens {{.Rank}} Ansehen, um eine Stimme abzugeben.
+ no_enough_rank_to_operate:
+ other: Dafür brauchst du mindestens {{.Rank}} Ansehen.
+ report:
+ handle_failed:
+ other: Bearbeiten der Meldung fehlgeschlagen.
+ not_found:
+ other: Meldung nicht gefunden.
+ tag:
+ already_exist:
+ other: Tag existiert bereits.
+ not_found:
+ other: Tag nicht gefunden.
+ recommend_tag_not_found:
+ other: Das Tag "Empfehlen" ist nicht vorhanden.
+ recommend_tag_enter:
+ other: Bitte gib mindestens einen erforderlichen Tag ein.
+ not_contain_synonym_tags:
+ other: Sollte keine Synonym-Tags enthalten.
+ cannot_update:
+ other: Keine Berechtigung zum Aktualisieren.
+ is_used_cannot_delete:
+ other: Du kannst keinen Tag löschen, der in Gebrauch ist.
+ cannot_set_synonym_as_itself:
+ other: Du kannst das Synonym des aktuellen Tags nicht als sich selbst festlegen.
+ smtp:
+ config_from_name_cannot_be_email:
+ other: Der Absendername kann keine E-Mail-Adresse sein.
+ theme:
+ not_found:
+ other: Design nicht gefunden.
+ revision:
+ review_underway:
+ other: Kann derzeit nicht bearbeitet werden, es existiert eine Version in der Überprüfungswarteschlange.
+ no_permission:
+ other: Keine Berechtigung zum Überarbeiten.
+ user:
+ external_login_missing_user_id:
+ other: Die Plattform des Drittanbieters stellt keine eindeutige UserID zur Verfügung, sodass du dich nicht anmelden kannst. Bitte wende dich an den Administrator der Website.
+ external_login_unbinding_forbidden:
+ other: Bitte setze ein Login-Passwort für dein Konto, bevor du dieses Login entfernst.
+ email_or_password_wrong:
+ other:
+ other: E-Mail und Passwort stimmen nicht überein.
+ not_found:
+ other: Benutzer nicht gefunden.
+ suspended:
+ other: Benutzer wurde gesperrt.
+ username_invalid:
+ other: Benutzername ist ungültig.
+ username_duplicate:
+ other: Benutzername wird bereits verwendet.
+ set_avatar:
+ other: Avatar setzen fehlgeschlagen.
+ cannot_update_your_role:
+ other: Du kannst deine Rolle nicht ändern.
+ not_allowed_registration:
+ other: Derzeit ist die Seite nicht für die Anmeldung geöffnet.
+ not_allowed_login_via_password:
+ other: Zurzeit ist es auf der Seite nicht möglich, sich mit einem Passwort anzumelden.
+ access_denied:
+ other: Zugriff verweigert
+ page_access_denied:
+ other: Du hast keinen Zugriff auf diese Seite.
+ add_bulk_users_format_error:
+ other: "Fehler {{.Field}}-Format in der Nähe von '{{.Content}}' in Zeile {{.Line}}. {{.ExtraMessage}}"
+ add_bulk_users_amount_error:
+ other: "Die Anzahl der Benutzer, die du auf einmal hinzufügst, sollte im Bereich von 1-{{.MaxAmount}} liegen."
+ config:
+ read_config_failed:
+ other: Lesekonfiguration fehlgeschlagen
+ database:
+ connection_failed:
+ other: Datenbankverbindung fehlgeschlagen
+ create_table_failed:
+ other: Tabelle erstellen fehlgeschlagen
+ install:
+ create_config_failed:
+ other: Kann die config.yaml-Datei nicht erstellen.
+ upload:
+ unsupported_file_format:
+ other: Dateiformat nicht unterstützt.
+ site_info:
+ config_not_found:
+ other: Seiten-Konfiguration nicht gefunden.
+ badge:
+ object_not_found:
+ other: Abzeichen-Objekt nicht gefunden
+ reason:
+ spam:
+ name:
+ other: Spam
+ desc:
+ other: Dieser Beitrag ist eine Werbung oder Vandalismus. Er ist nicht nützlich oder relevant für das aktuelle Thema.
+ rude_or_abusive:
+ name:
+ other: unhöflich oder beleidigend
+ desc:
+ other: "Eine vernünftige Person würde diesen Inhalt für respektvoll diskutierten Diskurs für unangemessen halten."
+ a_duplicate:
+ name:
+ other: ein Duplikat
+ desc:
+ other: Diese Frage wurde schon einmal gestellt und hat bereits eine Antwort.
+ placeholder:
+ other: Gib den Link zur bestehenden Frage ein
+ not_a_answer:
+ name:
+ other: keine Antwort
+ desc:
+ other: "Das wurde als Antwort gepostet, aber es versucht nicht, die Frage zu beantworten. Sie sollte entweder bearbeitet, kommentiert, als weitere Frage gestellt oder ganz gelöscht werden."
+ no_longer_needed:
+ name:
+ other: nicht mehr benötigt
+ desc:
+ other: Dieser Kommentar ist veraltet oder nicht relevant für diesen Beitrag.
+ something:
+ name:
+ other: anderer Grund
+ desc:
+ other: Dieser Beitrag erfordert die Aufmerksamkeit der Temmitglieder aus einem anderen, oben nicht genannten Grund.
+ placeholder:
+ other: Lass uns wissen, worüber du dir Sorgen machst
+ community_specific:
+ name:
+ other: ein Community-spezifischer Grund
+ desc:
+ other: Diese Frage entspricht nicht den Gemeinschaftsrichtlinien.
+ not_clarity:
+ name:
+ other: benötigt Details oder Klarheit
+ desc:
+ other: Diese Frage enthält derzeit mehrere Fragen in einer. Sie sollte sich auf ein einziges Problem konzentrieren.
+ looks_ok:
+ name:
+ other: sieht OK aus
+ desc:
+ other: Dieser Beitrag ist gut so wie er ist und nicht von schlechter Qualität.
+ needs_edit:
+ name:
+ other: muss bearbeitet werden, und ich habe es getan
+ desc:
+ other: Verbessere und korrigiere Probleme mit diesem Beitrag selbst.
+ needs_close:
+ name:
+ other: muss geschlossen werden
+ desc:
+ other: Eine geschlossene Frage kann nicht beantwortet werden, aber du kannst sie trotzdem bearbeiten, abstimmen und kommentieren.
+ needs_delete:
+ name:
+ other: muss gelöscht werden
+ desc:
+ other: Dieser Beitrag wird gelöscht.
+ question:
+ close:
+ duplicate:
+ name:
+ other: Spam
+ desc:
+ other: Diese Frage ist bereits gestellt worden und hat bereits eine Antwort.
+ guideline:
+ name:
+ other: ein Community-spezifischer Grund
+ desc:
+ other: Diese Frage entspricht nicht einer Gemeinschaftsrichtlinie.
+ multiple:
+ name:
+ other: benötigt Details oder Klarheit
+ desc:
+ other: Diese Frage enthält derzeit mehrere Fragen in einer. Sie sollte sich auf ein einziges Problem konzentrieren.
+ other:
+ name:
+ other: etwas anderes
+ desc:
+ other: Dieser Beitrag erfordert einen anderen Grund, der oben nicht aufgeführt ist.
+ operation_type:
+ asked:
+ other: gefragt
+ answered:
+ other: beantwortet
+ modified:
+ other: geändert
+ deleted_title:
+ other: Gelöschte Frage
+ questions_title:
+ other: Fragen
+ tag:
+ tags_title:
+ other: Schlagwörter
+ no_description:
+ other: Diese Kategorie hat keine Beschreibung.
+ notification:
+ action:
+ update_question:
+ other: aktualisierte Frage
+ answer_the_question:
+ other: beantwortete Frage
+ update_answer:
+ other: aktualisierte Antwort
+ accept_answer:
+ other: akzeptierte Antwort
+ comment_question:
+ other: kommentierte Frage
+ comment_answer:
+ other: kommentierte Antwort
+ reply_to_you:
+ other: hat Ihnen geantwortet
+ mention_you:
+ other: hat dich erwähnt
+ your_question_is_closed:
+ other: Deine Frage wurde geschlossen
+ your_question_was_deleted:
+ other: Deine Frage wurde gelöscht
+ your_answer_was_deleted:
+ other: Deine Antwort wurde gelöscht
+ your_comment_was_deleted:
+ other: Dein Kommentar wurde gelöscht
+ up_voted_question:
+ other: positiv bewertete Frage
+ down_voted_question:
+ other: negativ bewertete Frage
+ up_voted_answer:
+ other: positiv bewertete Antwort
+ down_voted_answer:
+ other: negativ bewertete Antwort
+ up_voted_comment:
+ other: positiv bewerteter Kommentar
+ invited_you_to_answer:
+ other: hat dich eingeladen, zu antworten
+ earned_badge:
+ other: Du hast das "{{.BadgeName}}" Abzeichen verdient
+ email_tpl:
+ change_email:
+ title:
+ other: "[{{.SiteName}}] Bestätige deine neue E-Mail-Adresse"
+ body:
+ other: "Bestätigen Sie Ihre neue E-Mail-Adresse für {{.SiteName}} indem Sie auf den folgenden Link klicken: \n{{.ChangeEmailUrl}}
\n\nWenn Sie diese Änderung nicht angefordert haben bitte diese E-Mail ignorieren.
\n\n-- \nHinweis: Dies ist eine automatische System-E-Mail, Bitte antworten Sie nicht auf diese Nachricht, da Ihre Antwort nicht angezeigt wird."
+ new_answer:
+ title:
+ other: "[{{.SiteName}}] {{.DisplayName}} hat deine Frage beantwortet"
+ body:
+ other: "{{.QuestionTitle}}
\n\n-- \nNote: This is an automatic system email, please do not reply to this message as your response will not be seen.
\n\nUnsubscribe"
+ pass_reset:
+ title:
+ other: "[{{.SiteName }}] Passwort zurücksetzen"
+ body:
+ other: "Jemand bat darum, Ihr Passwort auf {{.SiteName}}zurückzusetzen.
\n\nWenn Sie es nicht waren, können Sie diese E-Mail sicher ignorieren.
\n\nKlicken Sie auf den folgenden Link, um ein neues Passwort auszuwählen: \n{{.PassResetUrl}}\n\n
\n\n-- \nHinweis: Dies ist eine automatische System-E-Mail, Bitte antworten Sie nicht auf diese Nachricht, da Ihre Antwort nicht angezeigt wird."
+ register:
+ title:
+ other: "[{{.SiteName}}] Bestätige dein neues Konto"
+ body:
+ other: "Willkommen in {{.SiteName}}!
\n\nKlicken Sie auf den folgenden Link, um Ihr neues Konto zu bestätigen und zu aktivieren: \n{{.RegisterUrl}}
\n\nWenn der obige Link nicht anklickbar ist kopieren und in die Adressleiste Ihres Webbrowsers einfügen.\n
\n\n-- \nHinweis: Dies ist eine automatische System-E-Mail, Bitte antworten Sie nicht auf diese Nachricht, da Ihre Antwort nicht sichtbar ist."
+ test:
+ title:
+ other: "[{{.SiteName}}] Test-E-Mail"
+ body:
+ other: "Dies ist eine Test-E-Mail.\n
\n\n-- \nHinweis: Dies ist eine automatische System-E-Mail, Bitte antworten Sie nicht auf diese Nachricht, da Ihre Antwort nicht angezeigt wird."
+ action_activity_type:
+ upvote:
+ other: positiv bewerten
+ upvoted:
+ other: positiv bewertet
+ downvote:
+ other: negativ bewerten
+ downvoted:
+ other: negativ bewertet
+ accept:
+ other: akzeptieren
+ accepted:
+ other: akzeptiert
+ edit:
+ other: bearbeiten
+ review:
+ queued_post:
+ other: Post in der Warteschlange
+ flagged_post:
+ other: Beiträge gemeldet
+ suggested_post_edit:
+ other: Änderungsvorschläge
+ reaction:
+ tooltip:
+ other: "{{ .Names }} Und {{ .Count }} mehr..."
+ badge:
+ default_badges:
+ autobiographer:
+ name:
+ other: Autobiograph
+ desc:
+ other: Gefüllt mit Profil Informationen.
+ certified:
+ name:
+ other: Zertifiziert
+ desc:
+ other: Erledigte unser neues Benutzerhandbuch.
+ editor:
+ name:
+ other: Editor
+ desc:
+ other: Erster Beitrag bearbeiten.
+ first_flag:
+ name:
+ other: Erste Meldung
+ desc:
+ other: Erste Meldung eines Beitrags.
+ first_upvote:
+ name:
+ other: Erste Abstimmung
+ desc:
+ other: Erste Like eines Beitrags.
+ first_link:
+ name:
+ other: Erster Link
+ desc:
+ other: First added a link to another post.
+ first_reaction:
+ name:
+ other: Erste Reaktion
+ desc:
+ other: Zuerst reagierte auf den Beitrag.
+ first_share:
+ name:
+ other: Erstes Teilen
+ desc:
+ other: Zuerst einen Beitrag geteilt.
+ scholar:
+ name:
+ other: Gelehrter
+ desc:
+ other: Hat eine Frage gestellt und eine Antwort akzeptiert.
+ commentator:
+ name:
+ other: Kommentator
+ desc:
+ other: Hinterlassen Sie 5 Kommentare.
+ new_user_of_the_month:
+ name:
+ other: Neuer Benutzer des Monats
+ desc:
+ other: Ausstehende Beiträge in ihrem ersten Monat.
+ read_guidelines:
+ name:
+ other: Lesen Sie die Richtlinien
+ desc:
+ other: Lesen Sie die [Community-Richtlinien].
+ reader:
+ name:
+ other: Leser
+ desc:
+ other: Lesen Sie alle Antworten in einem Thema mit mehr als 10 Antworten.
+ welcome:
+ name:
+ other: Willkommen
+ desc:
+ other: Du hast eine positive Abstimmung erhalten.
+ nice_share:
+ name:
+ other: Schöne teilen
+ desc:
+ other: Hat einen Beitrag mit 25 einzigartigen Besuchern freigegeben.
+ good_share:
+ name:
+ other: Gute Teile
+ desc:
+ other: Hat einen Beitrag mit 300 einzigartigen Besuchern freigegeben.
+ great_share:
+ name:
+ other: Großartiges Teilen
+ desc:
+ other: Hat einen Beitrag mit 1000 einzigartigen Besuchern freigegeben.
+ out_of_love:
+ name:
+ other: Aus Liebe
+ desc:
+ other: Hat an einem Tag 50 Upvotes verwendet.
+ higher_love:
+ name:
+ other: Höhere Liebe
+ desc:
+ other: Hat an einem Tag 50 Upvotes 5 Mal verwendet.
+ crazy_in_love:
+ name:
+ other: Verrückt in Liebe
+ desc:
+ other: Hat an einem Tag 50 Upvotes 20 Mal verwendet.
+ promoter:
+ name:
+ other: Förderer
+ desc:
+ other: Hat einen Benutzer eingeladen.
+ campaigner:
+ name:
+ other: Kampagner
+ desc:
+ other: Lade 3 einfache Benutzer ein.
+ champion:
+ name:
+ other: Champion
+ desc:
+ other: Hat 5 Mitglieder eingeladen.
+ thank_you:
+ name:
+ other: Vielen Dank
+ desc:
+ other: Beitrag mit 20 Upvotes und 10 abgegebenen Upvotes.
+ gives_back:
+ name:
+ other: Feedback geben
+ desc:
+ other: Beitrag mit 100 Upvotes und 100 abgegebenen Upvotes.
+ empathetic:
+ name:
+ other: Einfühlsam
+ desc:
+ other: Beitrag mit 500 Upvotes und 1000 abgegebenen Upvotes.
+ enthusiast:
+ name:
+ other: Enthusiast
+ desc:
+ other: Besucht 10 aufeinander folgende Tage.
+ aficionado:
+ name:
+ other: Aficionado
+ desc:
+ other: Besucht 100 aufeinander folgende Tage.
+ devotee:
+ name:
+ other: Anhänger
+ desc:
+ other: Besucht 365 aufeinander folgende Tage.
+ anniversary:
+ name:
+ other: Jahrestag
+ desc:
+ other: Aktives Mitglied für ein Jahr, mindestens einmal veröffentlicht.
+ appreciated:
+ name:
+ other: Wertschätzt
+ desc:
+ other: Erhalten 1 up vote für 20 posts.
+ respected:
+ name:
+ other: Respektiert
+ desc:
+ other: Erhalten 2 up vote für 100 posts.
+ admired:
+ name:
+ other: Bewundert
+ desc:
+ other: Erhalten 5 up vote für 300 posts.
+ solved:
+ name:
+ other: Gelöst
+ desc:
+ other: Eine Antwort wurde akzeptiert.
+ guidance_counsellor:
+ name:
+ other: Anleitungsberater
+ desc:
+ other: 10 Antworten wurden akzeptiert.
+ know_it_all:
+ name:
+ other: Alleswisser
+ desc:
+ other: 50 Antworten wurden akzeptiert.
+ solution_institution:
+ name:
+ other: Solution Institution
+ desc:
+ other: 150 Antworten wurden akzeptiert.
+ nice_answer:
+ name:
+ other: Nette Antwort
+ desc:
+ other: Die Antwortpunktzahl beträgt mehr als 10 Punkte.
+ good_answer:
+ name:
+ other: Gute Antwort
+ desc:
+ other: Die Antwortpunktzahl beträgt mehr als 25 Punkte.
+ great_answer:
+ name:
+ other: Großartiges Antwort
+ desc:
+ other: Die Antwortpunktzahl beträgt mehr als 50 Punkte.
+ nice_question:
+ name:
+ other: Schöne Frage
+ desc:
+ other: Fragenpunktzahl von 10 oder mehr.
+ good_question:
+ name:
+ other: Gute Frage
+ desc:
+ other: Fragenpunktzahl von 25 oder mehr.
+ great_question:
+ name:
+ other: Große Frage
+ desc:
+ other: Fragenpunktzahl von 50 oder mehr.
+ popular_question:
+ name:
+ other: Populäre Frage
+ desc:
+ other: Frage mit 500 Ansichten.
+ notable_question:
+ name:
+ other: Bemerkenswerte Frage
+ desc:
+ other: Frage mit 1,000 Ansichten.
+ famous_question:
+ name:
+ other: Erstklassige Frage
+ desc:
+ other: Frage mit 5,000 Ansichten.
+ popular_link:
+ name:
+ other: Populärer Link
+ desc:
+ other: Geschrieben einen externen Link mit 50 Klicks.
+ hot_link:
+ name:
+ other: Heißer Link
+ desc:
+ other: Geschrieben einen externen Link mit 300 Klicks.
+ famous_link:
+ name:
+ other: Berühmter Link
+ desc:
+ other: Geschrieben einen externen Link mit 100 Klicks.
+ default_badge_groups:
+ getting_started:
+ name:
+ other: Erste Schritte
+ community:
+ name:
+ other: Gemeinschaft
+ posting:
+ name:
+ other: Freigeben
+# The following fields are used for interface presentation(Front-end)
+ui:
+ how_to_format:
+ title: Wie man formatiert
+ desc: >-
+
einen Beitrag erwähnen: #post_id
um Links
<https://url.com>
[Titel](https://url.com)
Zwischen den Absätzen Zeilenumbrüche einfügen
_italic_ oder **fett**
Code um 4 Leerzeichen einrücken
Zitat durch Setzen von > am Anfang der Zeile
Backtick-Escapes `wie _this_`
Codeumrandungen mit Backticks `
` Code hier ``
+ pagination:
+ prev: Zurück
+ next: Weiter
+ page_title:
+ question: Frage
+ questions: Fragen
+ tag: Schlagwort
+ tags: Schlagwörter
+ tag_wiki: tag Wiki
+ create_tag: Tag erstellen
+ edit_tag: Tag bearbeiten
+ ask_a_question: Frage hinzufügen
+ edit_question: Frage bearbeiten
+ edit_answer: Antwort bearbeiten
+ search: Suchen
+ posts_containing: Beiträge enthalten
+ settings: Einstellungen
+ notifications: Benachrichtigungen
+ login: Anmelden
+ sign_up: Registrieren
+ account_recovery: Konto-Wiederherstellung
+ account_activation: Account Aktivierung
+ confirm_email: Bestätigungs-E-Mail
+ account_suspended: Konto gesperrt
+ admin: Verwaltung
+ change_email: E-Mails ändern
+ install: Installation beantworten
+ upgrade: Antwort-Upgrade
+ maintenance: Website-Wartung
+ users: Benutzer
+ oauth_callback: In Bearbeitung
+ http_404: HTTP-Fehler 404
+ http_50X: HTTP-Fehler 500
+ http_403: HTTP Fehler 403
+ logout: Ausloggen
+ notifications:
+ title: Benachrichtigungen
+ inbox: Posteingang
+ achievement: Erfolge
+ new_alerts: Neue Benachrichtigungen
+ all_read: Alle als gelesen markieren
+ show_more: Mehr anzeigen
+ someone: Jemand
+ inbox_type:
+ all: Alle
+ posts: Beiträge
+ invites: Einladungen
+ votes: Abstimmungen
+ answer: Antwort
+ question: Frage
+ badge_award: Abzeichen
+ suspended:
+ title: Dein Konto wurde gesperrt
+ until_time: "Dein Konto wurde bis zum {{ time }} gesperrt."
+ forever: Dieser Benutzer wurde für immer gesperrt.
+ end: Du erfüllst keine Community-Richtlinie.
+ contact_us: Kontaktiere uns
+ editor:
+ blockquote:
+ text: Blockzitat
+ bold:
+ text: Stark
+ chart:
+ text: Bestenliste
+ flow_chart: Flussdiagramm
+ sequence_diagram: Sequenzdiagramm
+ class_diagram: Klassen Diagramm
+ state_diagram: Zustandsdiagramm
+ entity_relationship_diagram: Entitätsbeziehungsdiagramm
+ user_defined_diagram: Benutzerdefiniertes Diagramm
+ gantt_chart: Gantt-Diagramm
+ pie_chart: Kuchendiagramm
+ code:
+ text: Code Beispiel
+ add_code: Code-Beispiel hinzufügen
+ form:
+ fields:
+ code:
+ label: Code
+ msg:
+ empty: Code kann nicht leer sein.
+ language:
+ label: Sprache
+ placeholder: Automatische Erkennung
+ btn_cancel: Abbrechen
+ btn_confirm: Hinzufügen
+ formula:
+ text: Formel
+ options:
+ inline: Inline Formel
+ block: Block Formel
+ heading:
+ text: Überschrift
+ options:
+ h1: Überschrift 1
+ h2: Überschrift 2
+ h3: Überschrift 3
+ h4: Überschrift 4
+ h5: Überschrift 5
+ h6: Überschrift 6
+ help:
+ text: Hilfe
+ hr:
+ text: Horizontale Richtlinie
+ image:
+ text: Bild
+ add_image: Bild hinzufügen
+ tab_image: Bild hochladen
+ form_image:
+ fields:
+ file:
+ label: Bilddatei
+ btn: Bild auswählen
+ msg:
+ empty: Datei darf nicht leer sein.
+ only_image: Nur Bilddateien sind erlaubt.
+ max_size: Dateigröße darf {{size}} MB nicht überschreiten.
+ desc:
+ label: Beschreibung
+ tab_url: Bild URL
+ form_url:
+ fields:
+ url:
+ label: Bild URL
+ msg:
+ empty: Bild-URL darf nicht leer sein.
+ name:
+ label: Beschreibung
+ btn_cancel: Abbrechen
+ btn_confirm: Hinzufügen
+ uploading: Hochladen
+ indent:
+ text: Einzug
+ outdent:
+ text: Ausrücken
+ italic:
+ text: Hervorhebung
+ link:
+ text: Hyperlink
+ add_link: Hyperlink hinzufügen
+ form:
+ fields:
+ url:
+ label: URL
+ msg:
+ empty: URL darf nicht leer sein.
+ name:
+ label: Beschreibung
+ btn_cancel: Abbrechen
+ btn_confirm: Hinzufügen
+ ordered_list:
+ text: Nummerierte Liste
+ unordered_list:
+ text: Aufzählungsliste
+ table:
+ text: Tabelle
+ heading: Überschrift
+ cell: Zelle
+ file:
+ text: Datei anhängen
+ not_supported: "Diesen Dateityp nicht unterstützen. Versuchen Sie es erneut mit {{file_type}}."
+ max_size: "Dateigröße anhängen darf {{size}} MB nicht überschreiten."
+ close_modal:
+ title: Ich schließe diesen Beitrag als...
+ btn_cancel: Abbrechen
+ btn_submit: Senden
+ remark:
+ empty: Kann nicht leer sein.
+ msg:
+ empty: Bitte wähle einen Grund aus.
+ report_modal:
+ flag_title: Ich melde diesen Beitrag als...
+ close_title: Ich schließe diesen Beitrag wegen ...
+ review_question_title: Frage prüfen
+ review_answer_title: Antwort prüfen
+ review_comment_title: Kommentar prüfen
+ btn_cancel: Abbrechen
+ btn_submit: Senden
+ remark:
+ empty: Kann nicht leer sein.
+ msg:
+ empty: Bitte wähle einen Grund aus.
+ not_a_url: URL hat ein falsches Format.
+ url_not_match: URL-Ursprung stimmt nicht mit der aktuellen Website überein.
+ tag_modal:
+ title: Neuen Tag erstellen
+ form:
+ fields:
+ display_name:
+ label: Anzeigename
+ msg:
+ empty: Anzeigename darf nicht leer sein.
+ range: Anzeige des Namens mit bis zu 35 Zeichen.
+ slug_name:
+ label: URL-Slug
+ desc: 'Muss den Zeichensatz "a-z", "0-9", "+ # - " verwenden.'
+ msg:
+ empty: URL-Slug darf nicht leer sein.
+ range: URL-Slug mit bis zu 35 Zeichen.
+ character: URL-Slug enthält nicht erlaubten Zeichensatz.
+ desc:
+ label: Beschreibung
+ revision:
+ label: Version
+ edit_summary:
+ label: Zusammenfassung bearbeiten
+ placeholder: >-
+ Erkläre kurz deine Änderungen (korrigierte Rechtschreibung, korrigierte Grammatik, verbesserte Formatierung)
+ btn_cancel: Abbrechen
+ btn_submit: Senden
+ btn_post: Neuen Tag erstellen
+ tag_info:
+ created_at: Erstellt
+ edited_at: Bearbeitet
+ history: Verlauf
+ synonyms:
+ title: Synonyme
+ text: Die folgenden Tags werden neu zugeordnet zu
+ empty: Keine Synonyme gefunden.
+ btn_add: Synonym hinzufügen
+ btn_edit: Bearbeiten
+ btn_save: Speichern
+ synonyms_text: Die folgenden Tags werden neu zugeordnet zu
+ delete:
+ title: Diesen Tag löschen
+ tip_with_posts: >-
+
Wir erlauben es nicht, Tags mit Beiträgenzu löschen.
Bitte entfernen Sie dieses Tag zuerst aus den Beiträgen.
+ tip_with_synonyms: >-
+
Wir erlauben nicht Tags mit Synonymenzu löschen.
Bitte entfernen Sie zuerst die Synonyme von diesem Schlagwort.
Bist du sicher, dass du eine weitere Antwort hinzufügen willst?
Du könntest stattdessen den Bearbeiten-Link verwenden, um deine existierende Antwort zu verfeinern und zu verbessern.
+ empty: Antwort darf nicht leer sein.
+ characters: der Inhalt muss mindestens 6 Zeichen lang sein.
+ tips:
+ header_1: Danke für deine Antwort
+ li1_1: Bitte stelle sicher, dass du die Frage beantwortest. Gib Details an und erzähle von deiner Recherche.
+ li1_2: Untermauere alle Aussagen, die du erstellst, mit Referenzen oder persönlichen Erfahrungen.
+ header_2: Aber vermeide...
+ li2_1: Bitte um Hilfe, um Klarstellung oder um Antwort auf andere Antworten.
+ reopen:
+ confirm_btn: Wieder öffnen
+ title: Diesen Beitrag erneut öffnen
+ content: Bist du sicher, dass du wieder öffnen willst?
+ list:
+ confirm_btn: Liste
+ title: Diesen Beitrag auflisten
+ content: Möchten Sie diesen Beitrag wirklich in der Liste anzeigen?
+ unlist:
+ confirm_btn: Von Liste nehmen
+ title: Diesen Beitrag von der Liste nehmen
+ content: Möchten Sie diesen Beitrag wirklich aus der Liste ausblenden?
+ pin:
+ title: Diesen Beitrag anpinnen
+ content: Bist du sicher, dass du den Beitrag global anheften möchtest? Dieser Beitrag wird in allen Beitragslisten ganz oben erscheinen.
+ confirm_btn: Anheften
+ delete:
+ title: Diesen Beitrag löschen
+ question: >-
+ Wir raten davon ab, Fragen mit Antworten zu löschen, weil dadurch zukünftigen Lesern dieses Wissen vorenthalten wird.
Wiederholtes Löschen von beantworteten Fragen kann dazu führen, dass dein Konto für Fragen gesperrt wird. Bist du sicher, dass du löschen möchtest?
+ answer_accepted: >-
+
Wir empfehlen nicht, akzeptierte Antworten zu löschen, denn dadurch wird zukünftigen Lesern dieses Wissen vorenthalten.
Das wiederholte Löschen von akzeptierten Antworten kann dazu führen, dass dein Konto für die Beantwortung gesperrt wird. Bist du sicher, dass du löschen möchtest?
+ other: Bist du sicher, dass du löschen möchtest?
+ tip_answer_deleted: Diese Antwort wurde gelöscht
+ undelete_title: Diesen Beitrag wiederherstellen
+ undelete_desc: Bist du sicher, dass du die Löschung umkehren willst?
+ btns:
+ confirm: Bestätigen
+ cancel: Abbrechen
+ edit: Bearbeiten
+ save: Speichern
+ delete: Löschen
+ undelete: Wiederherstellen
+ list: Liste
+ unlist: Verstecken
+ unlisted: Versteckt
+ login: Einloggen
+ signup: Registrieren
+ logout: Ausloggen
+ verify: Überprüfen
+ create: Create
+ approve: Genehmigen
+ reject: Ablehnen
+ skip: Überspringen
+ discard_draft: Entwurf verwerfen
+ pinned: Angeheftet
+ all: Alle
+ question: Frage
+ answer: Antwort
+ comment: Kommentar
+ refresh: Aktualisieren
+ resend: Erneut senden
+ deactivate: Deaktivieren
+ active: Aktiv
+ suspend: Sperren
+ unsuspend: Entsperren
+ close: Schließen
+ reopen: Wieder öffnen
+ ok: Okay
+ light: Hell
+ dark: Dunkel
+ system_setting: System-Einstellung
+ default: Standard
+ reset: Zurücksetzen
+ tag: Tag
+ post_lowercase: post
+ filter: Filter
+ ignore: Ignorieren
+ submit: Absenden
+ normal: Normal
+ closed: Geschlossen
+ deleted: Gelöscht
+ deleted_permanently: Deleted permanently
+ pending: Ausstehend
+ more: Mehr
+ view: View
+ card: Card
+ compact: Compact
+ display_below: Display below
+ always_display: Always display
+ or: or
+ back_sites: Back to sites
+ search:
+ title: Suchergebnisse
+ keywords: Schlüsselwörter
+ options: Optionen
+ follow: Folgen
+ following: Folgend
+ counts: "{{count}} Ergebnisse"
+ more: Mehr
+ sort_btns:
+ relevance: Relevanz
+ newest: Neueste
+ active: Aktiv
+ score: Punktzahl
+ more: Mehr
+ tips:
+ title: Erweiterte Suchtipps
+ tag: "<1>[tag]1> Suche mit einem Tag"
+ user: "<1>user:username1> Suche nach Autor"
+ answer: "<1>Antworten:01> unbeantwortete Fragen"
+ score: "<1>score:31> Beiträge mit einer 3+ Punktzahl"
+ question: "<1>is:question1> Suchfragen"
+ is_answer: "<1>ist:answer1> Suchantworten"
+ empty: Wir konnten nichts finden. Versuche es mit anderen oder weniger spezifischen Keywords.
+ share:
+ name: Teilen
+ copy: Link kopieren
+ via: Beitrag teilen über...
+ copied: Kopiert
+ facebook: Auf Facebook teilen
+ twitter: Share to X
+ cannot_vote_for_self: Du kannst nicht für deinen eigenen Beitrag stimmen.
+ modal_confirm:
+ title: Fehler...
+ delete_permanently:
+ title: Delete permanently
+ content: Are you sure you want to delete permanently?
+ account_result:
+ success: Dein neues Konto ist bestätigt; du wirst zur Startseite weitergeleitet.
+ link: Weiter zur Startseite
+ oops: Hoppla!
+ invalid: Der Link, den Sie verwendet haben, funktioniert nicht mehr.
+ confirm_new_email: Deine E-Mail wurde aktualisiert.
+ confirm_new_email_invalid: >-
+ Dieser Bestätigungslink ist leider nicht mehr gültig. Vielleicht wurde deine E-Mail-Adresse bereits geändert?
+ unsubscribe:
+ page_title: Abonnement entfernen
+ success_title: Erfolgreich vom Abo abgemeldet
+ success_desc: Du wurdest erfolgreich aus der Abonnentenliste gestrichen und wirst keine weiteren E-Mails von uns erhalten.
+ link: Einstellungen ändern
+ question:
+ following_tags: Folgende Tags
+ edit: Bearbeiten
+ save: Speichern
+ follow_tag_tip: Folge den Tags, um deine Liste mit Fragen zu erstellen.
+ hot_questions: Angesagte Fragen
+ all_questions: Alle Fragen
+ x_questions: "{{ count }} Fragen"
+ x_answers: "{{ count }} Antworten"
+ questions: Fragen
+ answers: Antworten
+ newest: Neueste
+ active: Aktiv
+ hot: Heiß
+ frequent: Häufig
+ recommend: Empfehlen
+ score: Punktzahl
+ unanswered: Unbeantwortet
+ modified: geändert
+ answered: beantwortet
+ asked: gefragt
+ closed: schließen
+ follow_a_tag: Einem Tag folgen
+ more: Mehr
+ personal:
+ overview: Übersicht
+ answers: Antworten
+ answer: antwort
+ questions: Fragen
+ question: frage
+ bookmarks: Lesezeichen
+ reputation: Ansehen
+ comments: Kommentare
+ votes: Stimmen
+ badges: Abzeichen
+ newest: Neueste
+ score: Punktzahl
+ edit_profile: Profil bearbeiten
+ visited_x_days: "{{ count }} Tage besucht"
+ viewed: Gesehen
+ joined: Beigetreten
+ comma: ","
+ last_login: Gesehen
+ about_me: Über mich
+ about_me_empty: "// Hallo Welt !"
+ top_answers: Top-Antworten
+ top_questions: Top-Fragen
+ stats: Statistiken
+ list_empty: Keine Beiträge gefunden. Vielleicht möchtest du einen anderen Reiter auswählen?
+ content_empty: Keine Posts gefunden.
+ accepted: Akzeptiert
+ answered: antwortete
+ asked: gefragt
+ downvoted: negativ bewertet
+ mod_short: MOD
+ mod_long: Moderatoren
+ x_reputation: ansehen
+ x_votes: Stimmen erhalten
+ x_answers: Antworten
+ x_questions: Fragen
+ recent_badges: Neueste Abzeichen
+ install:
+ title: Installation
+ next: Nächste
+ done: Erledigt
+ config_yaml_error: Die Datei config.yaml kann nicht erstellt werden.
+ lang:
+ label: Bitte wähle eine Sprache
+ db_type:
+ label: Datenbank-Engine
+ db_username:
+ label: Nutzername
+ placeholder: wurzel
+ msg: Benutzername darf nicht leer sein.
+ db_password:
+ label: Passwort
+ placeholder: wurzel
+ msg: Passwort kann nicht leer sein.
+ db_host:
+ label: Datenbank-Host
+ placeholder: "db:3306"
+ msg: Datenbank-Host darf nicht leer sein.
+ db_name:
+ label: Datenbankname
+ placeholder: antworten
+ msg: Der Datenbankname darf nicht leer sein.
+ db_file:
+ label: Datenbank-Datei
+ placeholder: /data/answer.Weder noch
+ msg: Datenbankdatei kann nicht leer sein.
+ ssl_enabled:
+ label: Enable SSL
+ ssl_enabled_on:
+ label: On
+ ssl_enabled_off:
+ label: Off
+ ssl_mode:
+ label: SSL Mode
+ ssl_root_cert:
+ placeholder: sslrootcert file path
+ msg: Path to sslrootcert file cannot be empty
+ ssl_cert:
+ placeholder: sslcert file path
+ msg: Path to sslcert file cannot be empty
+ ssl_key:
+ placeholder: sslkey file path
+ msg: Path to sslkey file cannot be empty
+ config_yaml:
+ title: config.yaml erstellen
+ label: Die erstellte config.yaml-Datei.
+ desc: >-
+ Du kannst die Datei <1>config.yaml1> manuell im Verzeichnis <1>/var/wwww/xxx/1> erstellen und den folgenden Text dort einfügen.
+ info: Nachdem du das getan hast, klickst du auf die Schaltfläche "Weiter".
+ site_information: Standortinformationen
+ admin_account: Administratorkonto
+ site_name:
+ label: Seitenname
+ msg: Standortname darf nicht leer sein.
+ msg_max_length: Der Name der Website darf maximal 30 Zeichen lang sein.
+ site_url:
+ label: Seiten-URL
+ text: Die Adresse deiner Website.
+ msg:
+ empty: Die Website-URL darf nicht leer sein.
+ incorrect: Falsches Format der Website-URL.
+ max_length: Die URL der Website darf maximal 512 Zeichen lang sein.
+ contact_email:
+ label: Kontakt E-Mail
+ text: E-Mail-Adresse des Hauptkontakts, der für diese Website verantwortlich ist.
+ msg:
+ empty: Kontakt-E-Mail kann nicht leer sein.
+ incorrect: Falsches Format der Kontakt-E-Mail.
+ login_required:
+ label: Privat
+ switch: Anmeldung erforderlich
+ text: Nur eingeloggte Benutzer können auf diese Community zugreifen.
+ admin_name:
+ label: Name
+ msg: Der Name darf nicht leer sein.
+ character: 'Must use the character set "a-z", "A-Z", "0-9", " - . _"'
+ msg_max_length: Name must be between 2 to 30 characters in length.
+ admin_password:
+ label: Passwort
+ text: >-
+ Du brauchst dieses Passwort, um dich einzuloggen. Bitte bewahre es an einem sicheren Ort auf.
+ msg: Passwort kann nicht leer sein.
+ msg_min_length: Passwort muss mindestens 8 Zeichen lang sein.
+ msg_max_length: Das Passwort darf maximal 32 Zeichen lang sein.
+ admin_confirm_password:
+ label: "Confirm Password"
+ text: "Please re-enter your password to confirm."
+ msg: "Confirm password does not match."
+ admin_email:
+ label: E-Mail
+ text: Du brauchst diese E-Mail, um dich einzuloggen.
+ msg:
+ empty: E-Mail darf nicht leer sein.
+ incorrect: E-Mail falsches Format.
+ ready_title: Ihre Seite ist bereit
+ ready_desc: >-
+ Wenn du noch mehr Einstellungen ändern möchtest, besuche den <1>Admin-Bereich1>; du findest ihn im Seitenmenü.
+ good_luck: "Viel Spaß und viel Glück!"
+ warn_title: Warnung
+ warn_desc: >-
+ Die Datei <1>config.yaml1> existiert bereits. Wenn du einen der Konfigurationspunkte in dieser Datei zurücksetzen musst, lösche sie bitte zuerst.
+ install_now: Du kannst versuchen, <1>jetzt zu installieren1>.
+ installed: Bereits installiert
+ installed_desc: >-
+ Du scheinst es bereits installiert zu haben. Um neu zu installieren, lösche bitte zuerst deine alten Datenbanktabellen.
+ db_failed: Datenbankverbindung fehlgeschlagen
+ db_failed_desc: >-
+ Das bedeutet entweder, dass die Datenbankinformationen in deiner <1>config.yaml1> Datei falsch sind oder dass der Kontakt zum Datenbankserver nicht hergestellt werden konnte. Das könnte bedeuten, dass der Datenbankserver deines Hosts ausgefallen ist.
+ counts:
+ views: Ansichten
+ votes: Stimmen
+ answers: Antworten
+ accepted: Akzeptiert
+ page_error:
+ http_error: HTTP Fehler {{ code }}
+ desc_403: Du hast keine Berechtigung, auf diese Seite zuzugreifen.
+ desc_404: Leider existiert diese Seite nicht.
+ desc_50X: Der Server ist auf einen Fehler gestoßen und konnte deine Anfrage nicht vollständig abschließen.
+ back_home: Zurück zur Startseite
+ page_maintenance:
+ desc: "Wir werden gewartet, wir sind bald wieder da."
+ nav_menus:
+ dashboard: Dashboard
+ contents: Inhalt
+ questions: Fragen
+ answers: Antworten
+ users: Benutzer
+ badges: Abzeichen
+ flags: Meldungen
+ settings: Einstellungen
+ general: Allgemein
+ interface: Benutzeroberfläche
+ smtp: SMTP
+ branding: Branding
+ legal: Rechtliches
+ write: Schreiben
+ tos: Nutzungsbedingungen
+ privacy: Privatsphäre
+ seo: SEO
+ customize: Anpassen
+ themes: Themen
+ css_html: CSS/HTML
+ login: Anmeldung
+ privileges: Berechtigungen
+ plugins: Erweiterungen (Plugins)
+ installed_plugins: Installierte Plugins
+ website_welcome: Willkommen auf {{site_name}}
+ user_center:
+ login: Anmelden
+ qrcode_login_tip: Bitte verwende {{ agentName }}, um den QR-Code zu scannen und dich einzuloggen.
+ login_failed_email_tip: Anmeldung ist fehlgeschlagen. Bitte erlaube dieser App, auf deine E-Mail-Informationen zuzugreifen, bevor du es erneut versuchst.
+ badges:
+ modal:
+ title: Glückwunsch
+ content: Sie haben sich ein neues Abzeichen verdient.
+ close: Schließen
+ confirm: Abzeichen ansehen
+ title: Abzeichen
+ awarded: Verliehen
+ earned_×: Verdiente ×{{ number }}
+ ×_awarded: "verliehen {{ number }} "
+ can_earn_multiple: Du kannst das mehrmals verdienen.
+ earned: Verdient
+ admin:
+ admin_header:
+ title: Administrator
+ dashboard:
+ title: Dashboard
+ welcome: Willkommen im Admin Bereich!
+ site_statistics: Website-Statistiken
+ questions: "Fragen:"
+ resolved: "Belöst:"
+ unanswered: "Nicht beantwortet:"
+ answers: "Antworten:"
+ comments: "Kommentare:"
+ votes: "Stimmen:"
+ users: "Nutzer:"
+ flags: "Meldungen:"
+ reviews: "Rezension:"
+ site_health: Gesundheit der Website
+ version: "Version:"
+ https: "HTTPS:"
+ upload_folder: "Hochladeverzeichnis:"
+ run_mode: "Betriebsmodus:"
+ private: Privat
+ public: Öffentlich
+ smtp: "SMTP:"
+ timezone: "Zeitzone:"
+ system_info: Systeminformationen
+ go_version: "Go Version:"
+ database: "Datenbank:"
+ database_size: "Datenbankgröße:"
+ storage_used: "Verwendeter Speicher:"
+ uptime: "Betriebszeit:"
+ links: Links
+ plugins: Plugins
+ github: GitHub
+ blog: Blog
+ contact: Kontakt
+ forum: Forum
+ documents: Dokumentation
+ feedback: Rückmeldung
+ support: Unterstützung
+ review: Überprüfung
+ config: Konfig
+ update_to: Aktualisieren zu
+ latest: Aktuell
+ check_failed: Prüfung fehlgeschlagen
+ "yes": "Ja"
+ "no": "Nein"
+ not_allowed: Nicht erlaubt
+ allowed: Erlaubt
+ enabled: Aktiviert
+ disabled: Deaktiviert
+ writable: Schreibbar
+ not_writable: Nicht schreibbar
+ flags:
+ title: Meldungen
+ pending: Ausstehend
+ completed: Abgeschlossen
+ flagged: Gekennzeichnet
+ flagged_type: '{{ type }} gemeldet'
+ created: Erstellt
+ action: Aktion
+ review: Überprüfung
+ user_role_modal:
+ title: Benutzerrolle ändern zu...
+ btn_cancel: Abbrechen
+ btn_submit: Senden
+ new_password_modal:
+ title: Neues Passwort festlegen
+ form:
+ fields:
+ password:
+ label: Passwort
+ text: Der Nutzer wird abgemeldet und muss sich erneut anmelden.
+ msg: Das Passwort muss mindestens 8-32 Zeichen lang sein.
+ btn_cancel: Abbrechen
+ btn_submit: Senden
+ edit_profile_modal:
+ title: Profil bearbeiten
+ form:
+ fields:
+ display_name:
+ label: Anzeigename
+ msg_range: Anzeigename bis zu 30 Zeichen.
+ username:
+ label: Nutzername
+ msg_range: Nutzername bis zu 30 Zeichen.
+ email:
+ label: E-Mail
+ msg_invalid: Ungültige E-Mail-Adresse.
+ edit_success: Erfolgreich bearbeitet
+ btn_cancel: Abbrechen
+ btn_submit: Absenden
+ user_modal:
+ title: Neuen Benutzer hinzufügen
+ form:
+ fields:
+ users:
+ label: Masse Benutzer hinzufügen
+ placeholder: "John Smith, john@example.com, BUSYopr2\nAlice, alice@example.com, fpDntV8q"
+ text: Trenne "Name, E-Mail, Passwort" mit Kommas. Ein Benutzer pro Zeile.
+ msg: "Bitte gib die E-Mail des Nutzers ein, eine pro Zeile."
+ display_name:
+ label: Anzeigename
+ msg: Der Anzeigename muss zwischen 2 und 30 Zeichen lang sein.
+ email:
+ label: E-Mail
+ msg: Die E-Mail ist nicht gültig.
+ password:
+ label: Passwort
+ msg: Das Passwort muss mindestens 8-32 Zeichen lang sein.
+ btn_cancel: Abbrechen
+ btn_submit: Senden
+ users:
+ title: Benutzer
+ name: Name
+ email: E-Mail
+ reputation: Ansehen
+ created_at: Erstellt
+ delete_at: Löschzeit
+ suspend_at: Sperrzeit
+ status: Status
+ role: Rolle
+ action: Aktion
+ change: Ändern
+ all: Alle
+ staff: Teammitglieder
+ more: Mehr
+ inactive: Inaktiv
+ suspended: Gesperrt
+ deleted: Gelöscht
+ normal: Normal
+ Moderator: Moderation
+ Admin: Administrator
+ User: Benutzer
+ filter:
+ placeholder: "Nach Namen, user:id filtern"
+ set_new_password: Neues Passwort festlegen
+ edit_profile: Profil bearbeiten
+ change_status: Status ändern
+ change_role: Rolle wechseln
+ show_logs: Protokolle anzeigen
+ add_user: Benutzer hinzufügen
+ deactivate_user:
+ title: Benutzer deaktivieren
+ content: Ein inaktiver Nutzer muss seine E-Mail erneut bestätigen.
+ delete_user:
+ title: Diesen Benutzer löschen
+ content: Bist du sicher, dass du diesen Benutzer löschen willst? Das ist dauerhaft!
+ remove: Ihren Inhalt entfernen
+ label: Alle Fragen, Antworten, Kommentare, etc. entfernen
+ text: Aktiviere diese Option nicht, wenn du nur das Benutzerkonto löschen möchtest.
+ suspend_user:
+ title: Diesen Benutzer sperren
+ content: Ein gesperrter Benutzer kann sich nicht einloggen.
+ questions:
+ page_title: Fragen
+ unlisted: Nicht gelistet
+ post: Beitrag
+ votes: Stimmen
+ answers: Antworten
+ created: Erstellt
+ status: Status
+ action: Aktion
+ change: Ändern
+ pending: Ausstehend
+ filter:
+ placeholder: "Filtern nach Titel, Frage:Id"
+ answers:
+ page_title: Antworten
+ post: Beitrag
+ votes: Stimmen
+ created: Erstellt
+ status: Status
+ action: Aktion
+ change: Ändern
+ filter:
+ placeholder: "Filtern nach Titel, Antwort: id"
+ general:
+ page_title: Allgemein
+ name:
+ label: Seitenname
+ msg: Der Site-Name darf nicht leer sein.
+ text: "Der Name dieser Website, wie er im Titel-Tag verwendet wird."
+ site_url:
+ label: Seiten-URL
+ msg: Die Website-Url darf nicht leer sein.
+ validate: Bitte gib eine gültige URL ein.
+ text: Die Adresse deiner Website.
+ short_desc:
+ label: Kurze Seitenbeschreibung
+ msg: Die kurze Website-Beschreibung darf nicht leer sein.
+ text: "Kurze Beschreibung, wie im Titel-Tag auf der Homepage verwendet."
+ desc:
+ label: Seitenbeschreibung
+ msg: Die Websitebeschreibung darf nicht leer sein.
+ text: "Beschreibe diese Seite in einem Satz, wie er im Meta Description Tag verwendet wird."
+ contact_email:
+ label: Kontakt E-Mail
+ msg: Kontakt-E-Mail darf nicht leer sein.
+ validate: Kontakt-E-Mail ist ungültig.
+ text: E-Mail-Adresse des Hauptkontakts, der für diese Website verantwortlich ist.
+ check_update:
+ label: Softwareaktualisierungen
+ text: Automatisch auf Updates prüfen
+ interface:
+ page_title: Benutzeroberfläche
+ language:
+ label: Interface Sprache
+ msg: Sprache der Benutzeroberfläche darf nicht leer sein.
+ text: Sprache der Benutzeroberfläche. Sie ändert sich, wenn du die Seite aktualisierst.
+ time_zone:
+ label: Zeitzone
+ msg: Die Zeitzone darf nicht leer sein.
+ text: Wähle eine Stadt in der gleichen Zeitzone wie du.
+ smtp:
+ page_title: SMTP
+ from_email:
+ label: Von E-Mail
+ msg: Von E-Mail darf nicht leer sein.
+ text: Die E-Mail-Adresse, von der E-Mails gesendet werden.
+ from_name:
+ label: Von Name
+ msg: Absendername darf nicht leer sein.
+ text: Der Name, von dem E-Mails gesendet werden.
+ smtp_host:
+ label: SMTP-Host
+ msg: Der SMTP-Host darf nicht leer sein.
+ text: Dein Mailserver.
+ encryption:
+ label: Verschlüsselung
+ msg: Verschlüsselung darf nicht leer sein.
+ text: Für die meisten Server ist SSL die empfohlene Option.
+ ssl: SSL
+ tls: TLS
+ none: Keine
+ smtp_port:
+ label: SMTP-Port
+ msg: SMTP-Port muss Nummer 1 ~ 65535 sein.
+ text: Der Port zu deinem Mailserver.
+ smtp_username:
+ label: SMTP-Benutzername
+ msg: Der SMTP-Benutzername darf nicht leer sein.
+ smtp_password:
+ label: SMTP-Kennwort
+ msg: Das SMTP-Passwort darf nicht leer sein.
+ test_email_recipient:
+ label: Test-E-Mail-Empfänger
+ text: Gib die E-Mail-Adresse an, an die Testsendungen gesendet werden sollen.
+ msg: Test-E-Mail-Empfänger ist ungültig
+ smtp_authentication:
+ label: Authentifizierung aktivieren
+ title: SMTP-Authentifizierung
+ msg: Die SMTP-Authentifizierung darf nicht leer sein.
+ "yes": "Ja"
+ "no": "Nein"
+ branding:
+ page_title: Branding
+ logo:
+ label: Logo
+ msg: Logo darf nicht leer sein.
+ text: Das Logobild oben links auf deiner Website. Verwende ein breites rechteckiges Bild mit einer Höhe von 56 und einem Seitenverhältnis von mehr als 3:1. Wenn du es leer lässt, wird der Text des Website-Titels angezeigt.
+ mobile_logo:
+ label: Mobiles Logo
+ text: Das Logo wird auf der mobilen Version deiner Website verwendet. Verwende ein breites rechteckiges Bild mit einer Höhe von 56. Wenn du nichts angibst, wird das Bild aus der Einstellung "Logo" verwendet.
+ square_icon:
+ label: Quadratisches Symbol
+ msg: Quadratisches Symbol darf nicht leer sein.
+ text: Bild, das als Basis für Metadatensymbole verwendet wird. Sollte idealerweise größer als 512x512 sein.
+ favicon:
+ label: Favicon
+ text: Ein Favicon für deine Website. Um korrekt über ein CDN zu funktionieren, muss es ein png sein. Es wird auf 32x32 verkleinert. Wenn du es leer lässt, wird das "quadratische Symbol" verwendet.
+ legal:
+ page_title: Rechtliches
+ terms_of_service:
+ label: Nutzungsbedingungen
+ text: "Du kannst hier Inhalte zu den Nutzungsbedingungen hinzufügen. Wenn du bereits ein Dokument hast, das anderswo gehostet wird, gib hier die vollständige URL an."
+ privacy_policy:
+ label: Datenschutzbestimmungen
+ text: "Du kannst hier Inhalte zur Datenschutzerklärung hinzufügen. Wenn du bereits ein Dokument hast, das anderswo gehostet wird, gib hier die vollständige URL an."
+ external_content_display:
+ label: External content
+ text: "Content includes images, videos, and media embedded from external websites."
+ always_display: Always display external content
+ ask_before_display: Ask before displaying external content
+ write:
+ page_title: Schreiben
+ restrict_answer:
+ title: Antwort bearbeiten
+ label: Jeder Benutzer kann für jede Frage nur eine Antwort schreiben
+ text: "Schalten Sie aus, um es Benutzern zu ermöglichen, mehrere Antworten auf dieselbe Frage zu schreiben, was dazu führen kann, dass Antworten nicht im Fokus stehen."
+ recommend_tags:
+ label: Empfohlene Tags
+ text: "Empfohlene Tags werden standardmäßig in der Dropdown-Liste angezeigt."
+ msg:
+ contain_reserved: "empfohlene Tags dürfen keine reservierten Tags enthalten"
+ required_tag:
+ title: Benötigte Tags festlegen
+ label: '"Empfohlene Tags" als erforderliche Tags festlegen'
+ text: "Jede neue Frage muss mindestens ein Empfehlungs-Tag haben."
+ reserved_tags:
+ label: Reservierte Tags
+ text: "Reservierte Tags können nur vom Moderator verwendet werden."
+ image_size:
+ label: Maximale Bildgröße (MB)
+ text: "Die maximale Bildladegröße."
+ attachment_size:
+ label: Maximale Anhanggröße (MB)
+ text: "Die maximale Dateigröße für Dateianhänge."
+ image_megapixels:
+ label: Max. BildmePixel
+ text: "Maximale Anzahl an Megapixeln für ein Bild."
+ image_extensions:
+ label: Autorisierte Bilderweiterungen
+ text: "Eine Liste von Dateierweiterungen, die für die Anzeige von Bildern erlaubt sind, getrennt durch Kommata."
+ attachment_extensions:
+ label: Autorisierte Anhänge Erweiterungen
+ text: "Eine Liste von Dateierweiterungen, die für das Hochladen erlaubt sind, getrennt mit Kommas. WARNUNG: Erlaubt Uploads kann Sicherheitsprobleme verursachen."
+ seo:
+ page_title: SEO
+ permalink:
+ label: Dauerlink
+ text: Benutzerdefinierte URL-Strukturen können die Benutzerfreundlichkeit und die Vorwärtskompatibilität deiner Links verbessern.
+ robots:
+ label: robots.txt
+ text: Dadurch werden alle zugehörigen Site-Einstellungen dauerhaft überschrieben.
+ themes:
+ page_title: Themen
+ themes:
+ label: Themen
+ text: Wähle ein bestehendes Thema aus.
+ color_scheme:
+ label: Farbschema
+ navbar_style:
+ label: Stil der Navigationsleiste
+ primary_color:
+ label: Primäre Farbe
+ text: Ändere die Farben, die von deinen Themes verwendet werden
+ css_and_html:
+ page_title: CSS und HTML
+ custom_css:
+ label: Benutzerdefinierte CSS
+ text: >
+
+ head:
+ label: Kopf
+ text: >
+
+ header:
+ label: Header
+ text: >
+
+ footer:
+ label: Fusszeile
+ text: Dies wird vor
+ footer:
+ label: Footer
+ text: This will insert before