Compare commits
No commits in common. "main" and "v3.11.0" have entirely different histories.
|
@ -11,11 +11,3 @@ docker-compose.yml
|
||||||
/docs
|
/docs
|
||||||
README.md
|
README.md
|
||||||
node_modules
|
node_modules
|
||||||
|
|
||||||
# Build outputs
|
|
||||||
apps/*/.next
|
|
||||||
apps/*/dist
|
|
||||||
packages/*/dist
|
|
||||||
|
|
||||||
# Turbo prune output
|
|
||||||
out/
|
|
||||||
|
|
|
@ -5,15 +5,12 @@ SECRET_PASSWORD=abcdef1234567890abcdef1234567890
|
||||||
# Example: https://example.com
|
# Example: https://example.com
|
||||||
NEXT_PUBLIC_BASE_URL=http://localhost:3000
|
NEXT_PUBLIC_BASE_URL=http://localhost:3000
|
||||||
|
|
||||||
# AUTH_URL should be the same as NEXT_PUBLIC_BASE_URL
|
# NEXTAUTH_URL should be the same as NEXT_PUBLIC_BASE_URL
|
||||||
AUTH_URL=http://localhost:3000
|
NEXTAUTH_URL=http://localhost:3000
|
||||||
|
|
||||||
# A connection string to your Postgres database
|
# A connection string to your Postgres database
|
||||||
DATABASE_URL="postgres://postgres:postgres@localhost:5450/rallly"
|
DATABASE_URL="postgres://postgres:postgres@localhost:5450/rallly"
|
||||||
|
|
||||||
# A connection string to your Postgres database for direct access (used for migrations)
|
|
||||||
DIRECT_DATABASE_URL="postgres://postgres:postgres@localhost:5450/rallly"
|
|
||||||
|
|
||||||
# Required to be able to send emails
|
# Required to be able to send emails
|
||||||
SUPPORT_EMAIL=support@rallly.co
|
SUPPORT_EMAIL=support@rallly.co
|
||||||
|
|
||||||
|
@ -22,10 +19,3 @@ NEXT_PUBLIC_SELF_HOSTED=false
|
||||||
|
|
||||||
# Suppress warning from sentry during local development
|
# Suppress warning from sentry during local development
|
||||||
SENTRY_IGNORE_API_RESOLUTION_ERROR=1
|
SENTRY_IGNORE_API_RESOLUTION_ERROR=1
|
||||||
|
|
||||||
# Mailhog SMTP settings
|
|
||||||
SMTP_HOST=0.0.0.0
|
|
||||||
SMTP_PORT=1025
|
|
||||||
SMTP_SECURE=false
|
|
||||||
SMTP_USER=
|
|
||||||
SMTP_PWD=
|
|
8
.github/actions/pnpm-install/action.yml
vendored
|
@ -1,8 +0,0 @@
|
||||||
name: "Pnpm Install"
|
|
||||||
description: "Runs pnpm install with --frozen-lockfile"
|
|
||||||
runs:
|
|
||||||
using: "composite"
|
|
||||||
steps:
|
|
||||||
- name: Run pnpm install
|
|
||||||
run: pnpm install --frozen-lockfile
|
|
||||||
shell: bash
|
|
5
.github/actions/setup-node/action.yml
vendored
|
@ -8,13 +8,10 @@ inputs:
|
||||||
cache:
|
cache:
|
||||||
description: "Package manager for caching"
|
description: "Package manager for caching"
|
||||||
required: false
|
required: false
|
||||||
default: "pnpm"
|
default: "yarn"
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- name: Setup pnpm
|
|
||||||
uses: pnpm/action-setup@v4
|
|
||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
|
|
8
.github/actions/yarn-install/action.yml
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
name: "Yarn Install"
|
||||||
|
description: "Runs yarn install with --frozen-lockfile"
|
||||||
|
runs:
|
||||||
|
using: "composite"
|
||||||
|
steps:
|
||||||
|
- name: Run yarn install
|
||||||
|
run: yarn install --frozen-lockfile
|
||||||
|
shell: bash
|
46
.github/workflows/ci.yml
vendored
|
@ -18,23 +18,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: ./.github/actions/setup-node
|
- uses: ./.github/actions/setup-node
|
||||||
- uses: ./.github/actions/pnpm-install
|
- uses: ./.github/actions/yarn-install
|
||||||
|
|
||||||
- name: Generate Prisma Client
|
|
||||||
run: pnpm db:generate
|
|
||||||
|
|
||||||
- name: Check types
|
- name: Check types
|
||||||
run: pnpm type-check
|
run: yarn type-check
|
||||||
|
|
||||||
sherif:
|
|
||||||
name: Sherif
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
- uses: ./.github/actions/setup-node
|
|
||||||
|
|
||||||
- name: Run sherif
|
|
||||||
run: pnpm dlx sherif@latest
|
|
||||||
|
|
||||||
linting:
|
linting:
|
||||||
name: Linting
|
name: Linting
|
||||||
|
@ -42,10 +29,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: ./.github/actions/setup-node
|
- uses: ./.github/actions/setup-node
|
||||||
- uses: ./.github/actions/pnpm-install
|
- uses: ./.github/actions/yarn-install
|
||||||
|
|
||||||
- name: Check linting rules
|
- name: Check linting rules
|
||||||
run: pnpm turbo check
|
run: yarn lint
|
||||||
|
|
||||||
unit-tests:
|
unit-tests:
|
||||||
name: Unit tests
|
name: Unit tests
|
||||||
|
@ -53,10 +40,10 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: ./.github/actions/setup-node
|
- uses: ./.github/actions/setup-node
|
||||||
- uses: ./.github/actions/pnpm-install
|
- uses: ./.github/actions/yarn-install
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: pnpm test:unit
|
run: yarn test:unit
|
||||||
|
|
||||||
# Label of the container job
|
# Label of the container job
|
||||||
integration-tests:
|
integration-tests:
|
||||||
|
@ -64,37 +51,34 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
DATABASE_URL: postgresql://postgres:postgres@localhost:5450/rallly
|
DATABASE_URL: postgresql://postgres:postgres@localhost:5450/rallly
|
||||||
DIRECT_DATABASE_URL: postgresql://postgres:postgres@localhost:5450/rallly
|
|
||||||
CI: true
|
CI: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: ./.github/actions/setup-node
|
- uses: ./.github/actions/setup-node
|
||||||
- uses: ./.github/actions/pnpm-install
|
- uses: ./.github/actions/yarn-install
|
||||||
|
|
||||||
- name: Generate Prisma Client
|
|
||||||
run: pnpm db:generate
|
|
||||||
|
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: sudo apt-get update
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
|
||||||
- name: Install playwright dependencies
|
- name: Install playwright dependencies
|
||||||
run: pnpm playwright install --with-deps chromium
|
run: yarn playwright install --with-deps chromium
|
||||||
|
|
||||||
- name: Create production build
|
- name: Create production build
|
||||||
run: pnpm turbo build:test --filter=@rallly/web
|
run: yarn turbo build:test --filter=@rallly/web
|
||||||
|
|
||||||
- name: Start services
|
- name: Start services
|
||||||
run: pnpm docker:up
|
run: yarn docker:up
|
||||||
|
|
||||||
- name: Setup database
|
- name: Setup database
|
||||||
run: pnpm db:deploy
|
run: yarn db:deploy
|
||||||
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: pnpm turbo test:integration
|
run: yarn turbo test:integration
|
||||||
|
|
||||||
- name: Upload artifact playwright-report
|
- name: Upload artifact playwright-report
|
||||||
if: ${{ success() || failure() }}
|
if: ${{ success() || failure() }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: playwright-report
|
name: playwright-report
|
||||||
path: ./apps/web/playwright-report
|
path: ./apps/web/playwright-report
|
||||||
|
|
18
.github/workflows/house-keeping.yml
vendored
|
@ -3,28 +3,20 @@ on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 6 * * *" # Every day at 6:00am UTC
|
- cron: "0 6 * * *" # Every day at 6:00am UTC
|
||||||
|
env:
|
||||||
|
API_SECRET: ${{ secrets.API_SECRET }}
|
||||||
jobs:
|
jobs:
|
||||||
clean:
|
clean:
|
||||||
name: "Clean"
|
name: "Clean"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
env:
|
|
||||||
API_SECRET: ${{ secrets.API_SECRET }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check required variables
|
|
||||||
run: |
|
|
||||||
if [ -z "${{ vars.APP_BASE_URL }}" ]; then
|
|
||||||
echo "Error: APP_BASE_URL is not set. Please set this variable in your GitHub repository settings."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "BASE_URL=${{ vars.APP_BASE_URL }}" >> $GITHUB_ENV
|
|
||||||
- name: Mark inactive polls as deleted
|
- name: Mark inactive polls as deleted
|
||||||
run: |
|
run: |
|
||||||
curl -X "POST" --fail "${BASE_URL}/api/house-keeping/delete-inactive-polls" \
|
curl -X "POST" --fail "https://app.rallly.co/api/house-keeping/delete-inactive-polls" \
|
||||||
-H "Authorization: Bearer ${API_SECRET}" \
|
-H "Authorization: Bearer ${API_SECRET}" \
|
||||||
--max-time 300
|
|
||||||
- name: Remove deleted polls
|
- name: Remove deleted polls
|
||||||
run: |
|
run: |
|
||||||
curl -X "POST" --fail "${BASE_URL}/api/house-keeping/remove-deleted-polls" \
|
curl -X "POST" --fail "https://app.rallly.co/api/house-keeping/remove-deleted-polls" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-H "Authorization: Bearer ${API_SECRET}" \
|
-H "Authorization: Bearer ${API_SECRET}" \
|
||||||
--max-time 300
|
-d '{"take": 1000}'
|
||||||
|
|
2
.gitignore
vendored
|
@ -21,6 +21,8 @@ node_modules
|
||||||
|
|
||||||
# debug
|
# debug
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
|
||||||
# local env files
|
# local env files
|
||||||
.env
|
.env
|
||||||
|
|
2
.npmrc
|
@ -1,2 +0,0 @@
|
||||||
public-hoist-pattern[]=*import-in-the-middle*
|
|
||||||
public-hoist-pattern[]=*require-in-the-middle*
|
|
9
.prettierrc
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{
|
||||||
|
"plugins": ["prettier-plugin-tailwindcss"],
|
||||||
|
"semi": true,
|
||||||
|
"tabWidth": 2,
|
||||||
|
"useTabs": false,
|
||||||
|
"trailingComma": "all",
|
||||||
|
"singleQuote": false,
|
||||||
|
"arrowParens": "always"
|
||||||
|
}
|
21
.vscode/settings.json
vendored
|
@ -1,23 +1,8 @@
|
||||||
{
|
{
|
||||||
"editor.codeActionsOnSave": {
|
"editor.codeActionsOnSave": {
|
||||||
"source.fixAll.biome": "explicit",
|
"source.fixAll": "explicit"
|
||||||
"source.organizeImports.biome": "explicit"
|
|
||||||
},
|
|
||||||
"[javascript]": {
|
|
||||||
"editor.defaultFormatter": "biomejs.biome"
|
|
||||||
},
|
|
||||||
"[typescriptreact]": {
|
|
||||||
"editor.defaultFormatter": "biomejs.biome"
|
|
||||||
},
|
},
|
||||||
"typescript.tsdk": "node_modules/typescript/lib",
|
"typescript.tsdk": "node_modules/typescript/lib",
|
||||||
"typescript.preferences.importModuleSpecifier": "shortest",
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
||||||
"cSpell.words": ["Rallly", "Vella"],
|
"cSpell.words": ["Rallly", "Vella"]
|
||||||
"jestrunner.codeLensSelector": "",
|
|
||||||
"vitest.filesWatcherInclude": "**/*.test.ts",
|
|
||||||
"editor.formatOnSave": true,
|
|
||||||
"typescript.preferences.preferTypeOnlyAutoImports": true,
|
|
||||||
"typescript.tsserver.log": "verbose",
|
|
||||||
"typescript.tsserver.trace": "messages",
|
|
||||||
"references.preferredLocation": "view",
|
|
||||||
"editor.defaultFormatter": "biomejs.biome"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,41 +0,0 @@
|
||||||
1. Use pnpm for package management
|
|
||||||
2. Use dayjs for date handling
|
|
||||||
3. Use tailwindcss for styling
|
|
||||||
4. Use react-query for data fetching
|
|
||||||
5. Use react-hook-form for form handling
|
|
||||||
6. Prefer implicit return values over explicit return values
|
|
||||||
7. Use zod for form validation
|
|
||||||
8. Create separate import statements for types
|
|
||||||
9. All text in the UI should be translated using either the Trans component or the useTranslation hook
|
|
||||||
10. Prefer composable components in the style of shadcn UI over large monolithic components
|
|
||||||
11. DropdownMenuItem is a flex container with a preset gap so there is no need to add margins to the children
|
|
||||||
12. The size and colour of an icon should be set by wrapping it with the <Icon> component from @rallly/ui/icon which will give it the correct colour and size.
|
|
||||||
13. Keep the props of a component as minimal as possible. Pass only the bare minimum amount of information needed to it.
|
|
||||||
14. All text in the UI should be translatable.
|
|
||||||
15. i18n keys are in camelCase.
|
|
||||||
16. Use the <Trans> component in client components from @/components/trans. Use the `defaults` prop to provide the default text. Example:
|
|
||||||
|
|
||||||
```tsx
|
|
||||||
<Trans i18nKey="menu" defaults="Menu" />
|
|
||||||
```
|
|
||||||
|
|
||||||
17. On the server use the `getTranslations` function from @/i18n/server to get the translations. Example:
|
|
||||||
|
|
||||||
```ts
|
|
||||||
const { t } = await getTranslations();
|
|
||||||
|
|
||||||
t("menu", { defaultValue: "Menu" });
|
|
||||||
```
|
|
||||||
|
|
||||||
18. shadcn-ui components should be added to packages/ui
|
|
||||||
19. Always use a composable patterns when building components
|
|
||||||
20. Use `cn()` from @rallly/ui to compose classes
|
|
||||||
21. Prefer using the React module APIs (e.g. React.useState) instead of standalone hooks (e.g. useState)
|
|
||||||
22. Do not attempt to fix typescript issues related to missing translations. This will be handled by our tooling.
|
|
||||||
23. Never manually add translations to .json files. This will be handled by our tooling.
|
|
||||||
24. Add the "use client" directive to the top of any .tsx file that requires client-side javascript
|
|
||||||
25. i18nKeys should describe the message in camelCase. Ex. "lastUpdated": "Last Updated"
|
|
||||||
26. Keep i18nKeys up to 25 characters
|
|
||||||
27. If the i18nKey is not intended to be reused, prefix it with the component name in camelCase
|
|
||||||
28. Always use kebab-case for file names
|
|
||||||
29. Prefer double quotes for strings over single quotes
|
|
12
README.md
|
@ -6,7 +6,7 @@
|
||||||
<br />
|
<br />
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
[](https://github.com/lukevella/rallly/actions)
|
[](https://github.com/lukevella/rallly/actions)
|
||||||
[](https://crowdin.com/project/rallly)
|
[](https://crowdin.com/project/rallly)
|
||||||
[](https://www.gnu.org/licenses/agpl-3.0)
|
[](https://www.gnu.org/licenses/agpl-3.0)
|
||||||
[](https://discord.gg/uzg4ZcHbuM)
|
[](https://discord.gg/uzg4ZcHbuM)
|
||||||
|
@ -38,7 +38,7 @@ The following instructions are for running the project locally for development.
|
||||||
2. Install dependencies
|
2. Install dependencies
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm install
|
yarn
|
||||||
```
|
```
|
||||||
|
|
||||||
3. Setup environment variables
|
3. Setup environment variables
|
||||||
|
@ -54,7 +54,7 @@ The following instructions are for running the project locally for development.
|
||||||
4. Generate Prisma client
|
4. Generate Prisma client
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm db:generate
|
yarn db:generate
|
||||||
```
|
```
|
||||||
|
|
||||||
5. Setup database
|
5. Setup database
|
||||||
|
@ -64,13 +64,13 @@ The following instructions are for running the project locally for development.
|
||||||
To start the database, run:
|
To start the database, run:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm docker:up
|
yarn docker:up
|
||||||
```
|
```
|
||||||
|
|
||||||
Next run the following command to setup the database:
|
Next run the following command to setup the database:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm db:reset
|
yarn db:reset
|
||||||
```
|
```
|
||||||
|
|
||||||
This will:
|
This will:
|
||||||
|
@ -82,7 +82,7 @@ The following instructions are for running the project locally for development.
|
||||||
6. Start the Next.js server
|
6. Start the Next.js server
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm dev
|
yarn dev
|
||||||
```
|
```
|
||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
|
|
4
apps/docs/.eslintrc.js
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
/** @type {import("eslint").Linter.Config} */
|
||||||
|
module.exports = {
|
||||||
|
...require("@rallly/eslint-config")(__dirname),
|
||||||
|
};
|
|
@ -13,7 +13,7 @@ To preview your changes locally, you can use the [mintlify cli](https://mintlify
|
||||||
Install the cli globally:
|
Install the cli globally:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
pnpm install --global mintlify
|
yarn global add mintlify
|
||||||
```
|
```
|
||||||
|
|
||||||
Navigate to this directory (where you can find `mint.json`):
|
Navigate to this directory (where you can find `mint.json`):
|
||||||
|
|
|
@ -3,6 +3,6 @@
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rallly/tsconfig": "workspace:*"
|
"@rallly/tsconfig": "*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,15 +11,15 @@ If you find Rallly useful you can help support further development by paying a o
|
||||||
|
|
||||||
## Suggested Price
|
## Suggested Price
|
||||||
|
|
||||||
We believe $56 is a very fair price for the time and effort that's gone into making this product.
|
We believe $42 USD is a very fair price for the time and effort that's gone into making this product.
|
||||||
It's also the cost of a yearly subscription to the [official managed service](https://rallly.co).
|
It's also the cost of a yearly subscription to the [official managed service](https://rallly.co).
|
||||||
If you find Rallly useful and can afford to pay, please consider paying this amount.
|
If you find Rallly useful and can afford to pay, please consider paying this amount.
|
||||||
|
|
||||||
<CardGroup cols={1}>
|
<CardGroup cols={1}>
|
||||||
<Card
|
<Card
|
||||||
title="Pay $56"
|
title="Pay $42 USD"
|
||||||
icon="cart-shopping"
|
icon="cart-shopping"
|
||||||
href="https://buy.stripe.com/aEU1856UgdSf5nqeV6"
|
href="https://buy.stripe.com/9AQ0411zW9BZ5nqaEK"
|
||||||
>
|
>
|
||||||
One-time payment for Rallly Self-Hosted
|
One-time payment for Rallly Self-Hosted
|
||||||
</Card>
|
</Card>
|
||||||
|
|
4
apps/landing/.eslintrc.js
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
/** @type {import("eslint").Linter.Config} */
|
||||||
|
module.exports = {
|
||||||
|
...require("@rallly/eslint-config")(__dirname),
|
||||||
|
};
|
3
apps/landing/.gitignore
vendored
|
@ -1,5 +1,8 @@
|
||||||
node_modules
|
node_modules
|
||||||
|
|
||||||
|
# Sentry
|
||||||
|
.sentryclirc
|
||||||
|
|
||||||
# playwright
|
# playwright
|
||||||
/playwright-report
|
/playwright-report
|
||||||
/test-results
|
/test-results
|
24
apps/landing/declarations/i18next.d.ts
vendored
|
@ -1,19 +1,21 @@
|
||||||
import "i18next";
|
import "react-i18next";
|
||||||
|
|
||||||
import type blog from "../public/locales/en/blog.json";
|
import blog from "../public/locales/en/blog.json";
|
||||||
import type common from "../public/locales/en/common.json";
|
import common from "../public/locales/en/common.json";
|
||||||
import type home from "../public/locales/en/home.json";
|
import home from "../public/locales/en/home.json";
|
||||||
import type pricing from "../public/locales/en/pricing.json";
|
import pricing from "../public/locales/en/pricing.json";
|
||||||
|
|
||||||
|
interface I18nNamespaces {
|
||||||
|
common: typeof common;
|
||||||
|
home: typeof home;
|
||||||
|
pricing: typeof pricing;
|
||||||
|
blog: typeof blog;
|
||||||
|
}
|
||||||
|
|
||||||
declare module "i18next" {
|
declare module "i18next" {
|
||||||
interface CustomTypeOptions {
|
interface CustomTypeOptions {
|
||||||
defaultNS: "common";
|
defaultNS: "common";
|
||||||
resources: {
|
resources: I18nNamespaces;
|
||||||
common: typeof common;
|
|
||||||
home: typeof home;
|
|
||||||
pricing: typeof pricing;
|
|
||||||
blog: typeof blog;
|
|
||||||
};
|
|
||||||
returnNull: false;
|
returnNull: false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
3
apps/landing/next-env.d.ts
vendored
|
@ -1,5 +1,6 @@
|
||||||
/// <reference types="next" />
|
/// <reference types="next" />
|
||||||
/// <reference types="next/image-types/global" />
|
/// <reference types="next/image-types/global" />
|
||||||
|
/// <reference types="next/navigation-types/compat/navigation" />
|
||||||
|
|
||||||
// NOTE: This file should not be edited
|
// NOTE: This file should not be edited
|
||||||
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
// This file sets a custom webpack configuration to use your Next.js app
|
||||||
|
// with Sentry.
|
||||||
|
// https://nextjs.org/docs/api-reference/next.config.js/introduction
|
||||||
|
// https://docs.sentry.io/platforms/javascript/guides/nextjs/
|
||||||
|
|
||||||
const withBundleAnalyzer = require("@next/bundle-analyzer")({
|
const withBundleAnalyzer = require("@next/bundle-analyzer")({
|
||||||
enabled: process.env.ANALYZE === "true",
|
enabled: process.env.ANALYZE === "true",
|
||||||
});
|
});
|
||||||
|
@ -13,9 +18,9 @@ const nextConfig = {
|
||||||
productionBrowserSourceMaps: true,
|
productionBrowserSourceMaps: true,
|
||||||
output: "standalone",
|
output: "standalone",
|
||||||
transpilePackages: [
|
transpilePackages: [
|
||||||
|
"@rallly/icons",
|
||||||
"@rallly/ui",
|
"@rallly/ui",
|
||||||
"@rallly/tailwind-config",
|
"@rallly/tailwind-config",
|
||||||
"@rallly/utils",
|
|
||||||
"next-mdx-remote",
|
"next-mdx-remote",
|
||||||
],
|
],
|
||||||
webpack(config) {
|
webpack(config) {
|
||||||
|
@ -27,14 +32,6 @@ const nextConfig = {
|
||||||
|
|
||||||
return config;
|
return config;
|
||||||
},
|
},
|
||||||
turbopack: {
|
|
||||||
rules: {
|
|
||||||
"*.svg": {
|
|
||||||
loaders: ["@svgr/webpack"],
|
|
||||||
as: ".js",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
typescript: {
|
typescript: {
|
||||||
ignoreBuildErrors: true,
|
ignoreBuildErrors: true,
|
||||||
},
|
},
|
||||||
|
|
|
@ -3,48 +3,43 @@
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "cross-env PORT=3001 TAILWIND_MODE=watch next dev --turbopack",
|
"dev": "cross-env PORT=3001 TAILWIND_MODE=watch next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"analyze": "cross-env ANALYZE=true next build",
|
"analyze": "cross-env ANALYZE=true next build",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
|
"lint": "eslint .",
|
||||||
"type-check": "tsc --pretty --noEmit",
|
"type-check": "tsc --pretty --noEmit",
|
||||||
"i18n:scan": "i18next-scanner --config i18next-scanner.config.js"
|
"i18n:scan": "i18next-scanner --config i18next-scanner.config.js",
|
||||||
|
"prettier": "prettier --write ./src"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@prisma/client": "^6.4.1",
|
"@rallly/billing": "*",
|
||||||
"@rallly/billing": "workspace:*",
|
"@rallly/icons": "*",
|
||||||
"@rallly/database": "workspace:*",
|
"@rallly/languages": "*",
|
||||||
"@rallly/languages": "workspace:*",
|
"@rallly/tailwind-config": "*",
|
||||||
"@rallly/tailwind-config": "workspace:*",
|
"@rallly/ui": "*",
|
||||||
"@rallly/ui": "workspace:*",
|
"@svgr/webpack": "^6.5.1",
|
||||||
"@rallly/utils": "workspace:*",
|
"@vercel/analytics": "^0.1.8",
|
||||||
"@svgr/webpack": "^8.1.0",
|
"accept-language-parser": "^1.5.0",
|
||||||
"@vercel/analytics": "^1.5.0",
|
"dayjs": "^1.11.7",
|
||||||
"dayjs": "^1.11.13",
|
|
||||||
"gray-matter": "^4.0.3",
|
"gray-matter": "^4.0.3",
|
||||||
"i18next": "^24.2.2",
|
"i18next": "^22.4.9",
|
||||||
"i18next-icu": "^2.3.0",
|
"i18next-icu": "^2.3.0",
|
||||||
"i18next-resources-to-backend": "^1.2.1",
|
"intl-messageformat": "^10.3.4",
|
||||||
"intl-messageformat": "^10.7.15",
|
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"lucide-react": "^0.479.0",
|
"nanoid": "^4.0.0",
|
||||||
"motion": "^12.6.2",
|
"next-i18next": "^13.0.3",
|
||||||
"nanoid": "^5.0.9",
|
|
||||||
"next": "^15.3.1",
|
|
||||||
"next-mdx-remote": "^5.0.0",
|
"next-mdx-remote": "^5.0.0",
|
||||||
"next-seo": "^6.1.0",
|
"next-seo": "^6.1.0",
|
||||||
"react": "^19.1.0",
|
"react-i18next": "^12.1.4",
|
||||||
"react-dom": "^19.1.0",
|
"react-use": "^17.4.0"
|
||||||
"react-i18next": "^15.5.1",
|
|
||||||
"react-use": "^17.6.0"
|
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@next/bundle-analyzer": "^15.3.1",
|
"@next/bundle-analyzer": "^12.3.4",
|
||||||
"@rallly/tsconfig": "workspace:*",
|
"@rallly/tsconfig": "*",
|
||||||
|
"@rallly/eslint-config": "*",
|
||||||
"@types/color-hash": "^1.0.2",
|
"@types/color-hash": "^1.0.2",
|
||||||
"@types/lodash": "^4.14.178",
|
"@types/lodash": "^4.14.178",
|
||||||
"@types/react": "19.1.2",
|
|
||||||
"@types/react-dom": "19.1.2",
|
|
||||||
"cross-env": "^7.0.3",
|
"cross-env": "^7.0.3",
|
||||||
"i18next-scanner": "^4.2.0",
|
"i18next-scanner": "^4.2.0",
|
||||||
"i18next-scanner-typescript": "^1.1.1"
|
"i18next-scanner-typescript": "^1.1.1"
|
||||||
|
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 680 B After Width: | Height: | Size: 710 B |
Before Width: | Height: | Size: 735 B After Width: | Height: | Size: 751 B |
Before Width: | Height: | Size: 848 B After Width: | Height: | Size: 885 B |
Before Width: | Height: | Size: 939 B After Width: | Height: | Size: 959 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 383 B After Width: | Height: | Size: 388 B |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 477 B After Width: | Height: | Size: 566 B |
Before Width: | Height: | Size: 1 KiB After Width: | Height: | Size: 1.2 KiB |
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 no s'ha trobat",
|
"notFoundTitle": "404 no s'ha trobat",
|
||||||
"notFoundDescription": "No s'ha pogut trobar la pàgina que estaves buscant.",
|
"notFoundDescription": "No s'ha pogut trobar la pàgina que estaves buscant.",
|
||||||
"goToHome": "Anar a l'Inici",
|
"goToHome": "Anar a l'Inici",
|
||||||
|
"goToApp": "Vés a l'aplicació",
|
||||||
"pricing": "Preus",
|
"pricing": "Preus",
|
||||||
"bestDoodleAlternative": "Millor alternativa a Doodle",
|
"bestDoodleAlternative": "Millor alternativa a Doodle",
|
||||||
"freeSchedulingPoll": "Enquesta de planificació gratuïta",
|
"freeSchedulingPoll": "Enquesta de planificació gratuïta",
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Crea una pàgina com aquesta en segons!",
|
"createPageLikeThis": "Crea una pàgina com aquesta en segons!",
|
||||||
"noLoginRequired": "No cal iniciar sessió",
|
"noLoginRequired": "No cal iniciar sessió",
|
||||||
|
"headline": "Desfés-te dels fils de correu interminables",
|
||||||
|
"subheading": "Agilitza la programació d'esdeveniments i estalvia temps",
|
||||||
"pcmagQuote": "\"Planifica una enquesta en molt poc temps.\"",
|
"pcmagQuote": "\"Planifica una enquesta en molt poc temps.\"",
|
||||||
"hubspotQuote": "\"La forma més senzilla per conèixer la disponibilitat en grups grans.¨",
|
"hubspotQuote": "\"La forma més senzilla per conèixer la disponibilitat en grups grans.¨",
|
||||||
"goodfirmsQuote": "\"Únic en la senzillesa i requereix molt poc temps d'interacció.\"",
|
"goodfirmsQuote": "\"Únic en la senzillesa i requereix molt poc temps d'interacció.\"",
|
||||||
|
@ -21,9 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "La millor alternativa gratuïta a Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "La millor alternativa gratuïta a Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Cercant una alternativa a Doodle? Prova Rallly! És gratuïta, fàcil d'usar i no fa falta un compte.",
|
"doodleAlternativeMetaDescription": "Cercant una alternativa a Doodle? Prova Rallly! És gratuïta, fàcil d'usar i no fa falta un compte.",
|
||||||
"createASchedulingPoll": "Crea una enquesta de planificació",
|
"createASchedulingPoll": "Crea una enquesta de planificació",
|
||||||
|
"freeSchedulingPollMetaTitle": "Enquesta de planificació gratuïta | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Crea una enquesta gratuïta de planificació en segons. Ideal per organitzar reunions, esdeveniments, conferències, equips esportius i més.",
|
"freeSchedulingPollMetaDescription": "Crea una enquesta gratuïta de planificació en segons. Ideal per organitzar reunions, esdeveniments, conferències, equips esportius i més.",
|
||||||
|
"freeSchedulingPollTitle": "Cercant una enquesta de planificació gratuïta?",
|
||||||
"freeSchedulingPollDescription": "Rallly et deixa crear enquestes de planificació boniques i fàcils d'usar per trobar el millor moment pel teu següent esdeveniment.",
|
"freeSchedulingPollDescription": "Rallly et deixa crear enquestes de planificació boniques i fàcils d'usar per trobar el millor moment pel teu següent esdeveniment.",
|
||||||
"new": "Nou",
|
"new": "Nou",
|
||||||
"metaTitle": "Rallly - Planifica reunions de grup",
|
"metaTitle": "Rallly - Planifica reunions de grup",
|
||||||
"metaDescription": "Crea enquestes i vota per trobar el millor dia o hora. Una alternativa gratuïta a Doodle."
|
"metaDescription": "Crea enquestes i vota per trobar el millor dia o hora. Una alternativa gratuïta a Doodle.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 autoallotjat"
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,5 @@
|
||||||
"whenPollInactive": "Quan es converteix un sondeig en inactiu?",
|
"whenPollInactive": "Quan es converteix un sondeig en inactiu?",
|
||||||
"whenPollInactiveAnswer": "Els sondejos esdevenen inactius quan totes les opcions de data són en el passat I el sondeig no ha estat accessible durant més de 30 dies. Els sondejos inactius s'eliminen automàticament si no teniu una subscripció de pagament.",
|
"whenPollInactiveAnswer": "Els sondejos esdevenen inactius quan totes les opcions de data són en el passat I el sondeig no ha estat accessible durant més de 30 dies. Els sondejos inactius s'eliminen automàticament si no teniu una subscripció de pagament.",
|
||||||
"yearlyBillingDescription": "per any",
|
"yearlyBillingDescription": "per any",
|
||||||
"annualBenefit": "{count} mesos gratuïts",
|
"annualBenefit": "{count} mesos gratuïts"
|
||||||
"pricingTitle": "Comença gratis"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 nenalezeno",
|
"notFoundTitle": "404 nenalezeno",
|
||||||
"notFoundDescription": "Nemohli jsme najít stránku, kterou hledáte.",
|
"notFoundDescription": "Nemohli jsme najít stránku, kterou hledáte.",
|
||||||
"goToHome": "Přejít domů",
|
"goToHome": "Přejít domů",
|
||||||
|
"goToApp": "Přejít do aplikace",
|
||||||
"pricing": "Ceník",
|
"pricing": "Ceník",
|
||||||
"bestDoodleAlternative": "Nejlepší alternativa k Doodle",
|
"bestDoodleAlternative": "Nejlepší alternativa k Doodle",
|
||||||
"freeSchedulingPoll": "Hlasování o termínech schůzek zdarma",
|
"freeSchedulingPoll": "Hlasování o termínech schůzek zdarma",
|
||||||
|
@ -22,8 +23,5 @@
|
||||||
"availabilityPoll": "Dostupná hlasování",
|
"availabilityPoll": "Dostupná hlasování",
|
||||||
"solutions": "Řešení",
|
"solutions": "Řešení",
|
||||||
"howItWorks": "Jak to funguje",
|
"howItWorks": "Jak to funguje",
|
||||||
"status": "Stav",
|
"status": "Stav"
|
||||||
"when2MeetAlternative": "When2Meet alternativa",
|
|
||||||
"meetingPoll": "Plánovací anketa",
|
|
||||||
"signUp": "Registrovat se"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Vytvořte obdobnou stránku za pár vteřin!",
|
"createPageLikeThis": "Vytvořte obdobnou stránku za pár vteřin!",
|
||||||
"noLoginRequired": "Bez přihlášení",
|
"noLoginRequired": "Bez přihlášení",
|
||||||
"headline": "Najděte nejlepší čas na setkání",
|
"headline": "Neřešte plánování termínů v e-mailech",
|
||||||
"subheading": "Domlouvejte skupinové schůzky bez zdlouhavého přeposílání e-mailů",
|
"subheading": "Zjednodušte proces plánování a šetřete čas",
|
||||||
"pcmagQuote": "„Vytvořte hlasování v co nejkratším čase.\"",
|
"pcmagQuote": "„Vytvořte hlasování v co nejkratším čase.\"",
|
||||||
"hubspotQuote": "„Nejjednodušší volba při hlasování o termínech schůzek pro velké skupiny.“",
|
"hubspotQuote": "„Nejjednodušší volba při hlasování o termínech schůzek pro velké skupiny.“",
|
||||||
"goodfirmsQuote": "„Jedinečné ve své jednoduchosti a hlasování zabere minimum času.“",
|
"goodfirmsQuote": "„Jedinečné ve své jednoduchosti a hlasování zabere minimum času.“",
|
||||||
|
@ -10,8 +10,6 @@
|
||||||
"ericQuote": "„Pokud vaše plánování schůzek probíhá stále v emailech, důrazně vás vyzývám, abyste se vyzkoušeli Rallly a nechali ho zjednodušit vaše plánování schůzek. Bude více organizované a váš den bude méně stesující.“",
|
"ericQuote": "„Pokud vaše plánování schůzek probíhá stále v emailech, důrazně vás vyzývám, abyste se vyzkoušeli Rallly a nechali ho zjednodušit vaše plánování schůzek. Bude více organizované a váš den bude méně stesující.“",
|
||||||
"viaTrustpilot": "skrze Trustpilot",
|
"viaTrustpilot": "skrze Trustpilot",
|
||||||
"ericJobTitle": "Výkonný asistent na MIT",
|
"ericJobTitle": "Výkonný asistent na MIT",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ registrovaných uživatelů",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ vytvořených anket",
|
|
||||||
"statsLanguagesSupported": "Podporováno více než 10 jazyků",
|
"statsLanguagesSupported": "Podporováno více než 10 jazyků",
|
||||||
"hint": "Zdarma! Bez nutnosti přihlášení.",
|
"hint": "Zdarma! Bez nutnosti přihlášení.",
|
||||||
"doodleAlternative": "Nejlepší bezplatná alternativa k Doodle",
|
"doodleAlternative": "Nejlepší bezplatná alternativa k Doodle",
|
||||||
|
@ -25,20 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Nejlepší bezplatná alternativa k Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Nejlepší bezplatná alternativa k Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Hledáte alternativu k Doodle? Zkuste Rallly! Je zdarma, je jednoduchá a nevyžaduje žádný účet.",
|
"doodleAlternativeMetaDescription": "Hledáte alternativu k Doodle? Zkuste Rallly! Je zdarma, je jednoduchá a nevyžaduje žádný účet.",
|
||||||
"createASchedulingPoll": "Vytvořit hlasování o schůzce",
|
"createASchedulingPoll": "Vytvořit hlasování o schůzce",
|
||||||
"freeSchedulingPollMetaTitle": "Vytvořte si anketu pro plánování schůzky zdarma a hned | Bez nutnosti registrace",
|
"freeSchedulingPollMetaTitle": "Plánovací anketa zdarma | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Vytvořte plánovací anketu zdarma za pár vteřin. Ideální pro organizaci schůzek, akcí, konferencí, sportovních týmů a dalších.",
|
"freeSchedulingPollMetaDescription": "Vytvořte plánovací anketu zdarma za pár vteřin. Ideální pro organizaci schůzek, akcí, konferencí, sportovních týmů a dalších.",
|
||||||
"freeSchedulingPollTitle": "Najděte datum pro vaši další událost",
|
"freeSchedulingPollTitle": "Hledáte bezplatný nástroj na plánování schůzek?",
|
||||||
"freeSchedulingPollDescription": "Rallly vám umožňuje vytvořit přehledné a jednoduché plánovací ankety, abyste vždy našli nejlepší čas pro další událost.",
|
"freeSchedulingPollDescription": "Rallly vám umožňuje vytvořit přehledné a jednoduché plánovací ankety, abyste vždy našli nejlepší čas pro další událost.",
|
||||||
"new": "Nové",
|
"new": "Nové",
|
||||||
"metaTitle": "Rallly - Plánování skupinových setkání",
|
"metaTitle": "Rallly - Plánování skupinových setkání",
|
||||||
"metaDescription": "Vytvořte hlasování a najděte společně nejlepší den nebo čas. Bezplatná alternativa k Doodle.",
|
"metaDescription": "Vytvořte hlasování a najděte společně nejlepší den nebo čas. Bezplatná alternativa k Doodle.",
|
||||||
"when2meetAlternativeMetaTitle": "Nejlepší When2Meet Alternativa: Rallly",
|
"selfHostingBlog": "Rallly 3.0 instalace s vlastní správou"
|
||||||
"when2meetAlternativeMetaDescription": "Najděte jednodušší způsob, jak plánovat schůzky – s Rallly, nejlepší bezplatnou alternativou k When2Meet. Snadné použití a zcela zdarma.",
|
|
||||||
"when2meetAlternative": "Stále používáte When2Meet?",
|
|
||||||
"when2meetAlternativeDescription": "Vytvářejte profesionální ankety pro schůzky bez reklam zdarma s Rallly.",
|
|
||||||
"meetingPoll": "Vytvářejte profesionální ankety pro schůzky s Rallly",
|
|
||||||
"meetingPollDescription": "Plánovací ankety představují efektivní způsob, jak zjistit, kdy mají lidé čas. Služba Rallly umožňuje jednoduše vytvářet přehledné a atraktivní ankety na domlouvání schůzek.",
|
|
||||||
"meetingPollMetaTitle": "Plánovací anketa",
|
|
||||||
"meetingPollMetaDescription": "Jednoduše naplánujte schůzky s naší funkcí průzkumu, které zajistí dostupnost pro všechny.",
|
|
||||||
"quickCreateBlog": "Představujeme Rychlé vytvoření"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,5 @@
|
||||||
"whenPollInactive": "Kdy se anketa stane neaktivní?",
|
"whenPollInactive": "Kdy se anketa stane neaktivní?",
|
||||||
"whenPollInactiveAnswer": "Anketa se stane neaktivní, když jsou všechny možnosti (data) v minulosti a zároveň nikdo anketu nenavštívil více než 30 dní. Neaktivní ankety jsou automaticky smazány, pokud nemáte placené předplatné.",
|
"whenPollInactiveAnswer": "Anketa se stane neaktivní, když jsou všechny možnosti (data) v minulosti a zároveň nikdo anketu nenavštívil více než 30 dní. Neaktivní ankety jsou automaticky smazány, pokud nemáte placené předplatné.",
|
||||||
"yearlyBillingDescription": "za rok",
|
"yearlyBillingDescription": "za rok",
|
||||||
"annualBenefit": "{count} měsíců zdarma",
|
"annualBenefit": "{count} měsíců zdarma"
|
||||||
"pricingTitle": "Začněte zdarma",
|
|
||||||
"pricingSubtitle": "Pro přístup k prémiovým funkcím přejděte na placenou verzi"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 Ikke Fundet",
|
"notFoundTitle": "404 Ikke Fundet",
|
||||||
"notFoundDescription": "Kunne ikke finde den side, du ledte efter.",
|
"notFoundDescription": "Kunne ikke finde den side, du ledte efter.",
|
||||||
"goToHome": "Gå til startside",
|
"goToHome": "Gå til startside",
|
||||||
|
"goToApp": "Gå til app'en",
|
||||||
"pricing": "Priser",
|
"pricing": "Priser",
|
||||||
"bestDoodleAlternative": "Det bedste alternativ til Doodle",
|
"bestDoodleAlternative": "Det bedste alternativ til Doodle",
|
||||||
"freeSchedulingPoll": "Gratis planlægningsafstemning",
|
"freeSchedulingPoll": "Gratis planlægningsafstemning",
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Opret en side som denne hurtigt!",
|
"createPageLikeThis": "Opret en side som denne hurtigt!",
|
||||||
"noLoginRequired": "Intet login påkrævet",
|
"noLoginRequired": "Intet login påkrævet",
|
||||||
|
"headline": "Skrot dine frem-og-tilbage e-mails",
|
||||||
|
"subheading": "Strømlin din planlægningsproces og spar tid",
|
||||||
"pcmagQuote": "“Opsæt en planlægningsafstemning på så kort tid som muligt.”",
|
"pcmagQuote": "“Opsæt en planlægningsafstemning på så kort tid som muligt.”",
|
||||||
"hubspotQuote": "“Det enkleste valg for tilgængelighedsafstemning for store grupper.”",
|
"hubspotQuote": "“Det enkleste valg for tilgængelighedsafstemning for store grupper.”",
|
||||||
"goodfirmsQuote": "“Unik i sin enkelhed og kræver minimal tid.”",
|
"goodfirmsQuote": "“Unik i sin enkelhed og kræver minimal tid.”",
|
||||||
|
@ -23,13 +25,14 @@
|
||||||
"doodleAlternativeMetaTitle": "Bedste gratis alternativ til Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Bedste gratis alternativ til Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Leder du efter et Doodle-alternativ? Prøv Rallly! Det er gratis, nemt at bruge, og kræver ikke en konto.",
|
"doodleAlternativeMetaDescription": "Leder du efter et Doodle-alternativ? Prøv Rallly! Det er gratis, nemt at bruge, og kræver ikke en konto.",
|
||||||
"createASchedulingPoll": "Gratis planlægningsafstemning",
|
"createASchedulingPoll": "Gratis planlægningsafstemning",
|
||||||
"freeSchedulingPollMetaTitle": "Opret en gratis afstemning - der kræves ingen konto",
|
"freeSchedulingPollMetaTitle": "Gratis planlægningsafstemning | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Opret en gratis planlægningsafstemninger på få sekunder. Ideel til at organisere møder, arrangementer, konferencer, sportshold og meget mere.",
|
"freeSchedulingPollMetaDescription": "Opret en gratis planlægningsafstemninger på få sekunder. Ideel til at organisere møder, arrangementer, konferencer, sportshold og meget mere.",
|
||||||
"freeSchedulingPollTitle": "Find en dato for din næste begivenhed",
|
"freeSchedulingPollTitle": "Leder du efter en gratis planlægningsafstemning?",
|
||||||
"freeSchedulingPollDescription": "Rallly lader dig oprette pæne og lette planlægningsafstemninger, så du kan finde det bedste tidspunkt for din næste begivenhed.",
|
"freeSchedulingPollDescription": "Rallly lader dig oprette pæne og lette planlægningsafstemninger, så du kan finde det bedste tidspunkt for din næste begivenhed.",
|
||||||
"new": "Ny",
|
"new": "Ny",
|
||||||
"metaTitle": "Rallly - Planlæg gruppemøder",
|
"metaTitle": "Rallly - Planlæg gruppemøder",
|
||||||
"metaDescription": "Opret afstemninger og stemme for at finde den bedste dag eller tid. Et gratis alternativ til Doodle.",
|
"metaDescription": "Opret afstemninger og stemme for at finde den bedste dag eller tid. Et gratis alternativ til Doodle.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 selv-hosting",
|
||||||
"when2meetAlternativeMetaTitle": "Bedste When2Meet alternativ: Rallly",
|
"when2meetAlternativeMetaTitle": "Bedste When2Meet alternativ: Rallly",
|
||||||
"when2meetAlternativeMetaDescription": "Find en bedre måde at planlægge møder med Rallly, det bedste gratis alternativ til When2Meet. Let at bruge og gratis.",
|
"when2meetAlternativeMetaDescription": "Find en bedre måde at planlægge møder med Rallly, det bedste gratis alternativ til When2Meet. Let at bruge og gratis.",
|
||||||
"when2meetAlternative": "Bruger du stadig When2Meet?",
|
"when2meetAlternative": "Bruger du stadig When2Meet?",
|
||||||
|
@ -37,6 +40,5 @@
|
||||||
"meetingPoll": "Opret professionelle mødeafstemninger med Rallly",
|
"meetingPoll": "Opret professionelle mødeafstemninger med Rallly",
|
||||||
"meetingPollDescription": "Mødeafstemninger er en fantastisk måde at undersøge folks tilgængelighed. Rallly lader dig oprette flotte mødeafstemninger med lethed.",
|
"meetingPollDescription": "Mødeafstemninger er en fantastisk måde at undersøge folks tilgængelighed. Rallly lader dig oprette flotte mødeafstemninger med lethed.",
|
||||||
"meetingPollMetaTitle": "Mødeafstemning",
|
"meetingPollMetaTitle": "Mødeafstemning",
|
||||||
"meetingPollMetaDescription": "Planlæg nemt møder med vores meningsmåling, hvilket sikrer alles tilgængelighed.",
|
"meetingPollMetaDescription": "Planlæg nemt møder med vores meningsmåling, hvilket sikrer alles tilgængelighed."
|
||||||
"quickCreateBlog": "Introducerer hurtig oprettelse"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 Seite nicht gefunden",
|
"notFoundTitle": "404 Seite nicht gefunden",
|
||||||
"notFoundDescription": "Die gewünschte Seite konnte nicht gefunden werden.",
|
"notFoundDescription": "Die gewünschte Seite konnte nicht gefunden werden.",
|
||||||
"goToHome": "Zur Startseite",
|
"goToHome": "Zur Startseite",
|
||||||
|
"goToApp": "Zur App",
|
||||||
"pricing": "Preise",
|
"pricing": "Preise",
|
||||||
"bestDoodleAlternative": "Beste Doodle Alternative",
|
"bestDoodleAlternative": "Beste Doodle Alternative",
|
||||||
"freeSchedulingPoll": "Kostenlose Umfrage zur Terminplanung",
|
"freeSchedulingPoll": "Kostenlose Umfrage zur Terminplanung",
|
||||||
|
@ -24,6 +25,5 @@
|
||||||
"howItWorks": "So funktioniert's",
|
"howItWorks": "So funktioniert's",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
"when2MeetAlternative": "When2Meet Alternative",
|
"when2MeetAlternative": "When2Meet Alternative",
|
||||||
"meetingPoll": "Meetingumfrage",
|
"meetingPoll": "Meetingumfrage"
|
||||||
"signUp": "Registrieren"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Erstelle eine Seite wie diese in Sekunden!",
|
"createPageLikeThis": "Erstelle eine Seite wie diese in Sekunden!",
|
||||||
"noLoginRequired": "Keine Anmeldung erforderlich",
|
"noLoginRequired": "Keine Anmeldung erforderlich",
|
||||||
"headline": "Finde die beste Zeit zum Treffen",
|
"headline": "Lass den ständigen E-Mail-Austausch hinter dir",
|
||||||
"subheading": "Koordiniere Gruppenmeetings ohne ewiges E-Mail-Hin-und-Her",
|
"subheading": "Spare Zeit mit einem reibungslosen Planungsprozess",
|
||||||
"pcmagQuote": "\"Erstelle eine Terminumfrage in kürzester Zeit.\"",
|
"pcmagQuote": "\"Erstelle eine Terminumfrage in kürzester Zeit.\"",
|
||||||
"hubspotQuote": "\"Die einfachste Wahl der Verfügbarkeitsumfrage für große Gruppen.\"",
|
"hubspotQuote": "\"Die einfachste Wahl der Verfügbarkeitsumfrage für große Gruppen.\"",
|
||||||
"goodfirmsQuote": "\"Einmalig in seiner Einfachheit und benötigt minimale Interaktionszeit.\"",
|
"goodfirmsQuote": "\"Einmalig in seiner Einfachheit und benötigt minimale Interaktionszeit.\"",
|
||||||
|
@ -25,20 +25,19 @@
|
||||||
"doodleAlternativeMetaTitle": "Beste kostenlose Alternative zu Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Beste kostenlose Alternative zu Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Auf der Suche nach einer Alternative zu Doodle? Probiere Rallly aus! Es ist kostenlos, einfach zu verwenden und erfordert kein Konto.",
|
"doodleAlternativeMetaDescription": "Auf der Suche nach einer Alternative zu Doodle? Probiere Rallly aus! Es ist kostenlos, einfach zu verwenden und erfordert kein Konto.",
|
||||||
"createASchedulingPoll": "Erstelle eine Umfrage zur Terminplanung",
|
"createASchedulingPoll": "Erstelle eine Umfrage zur Terminplanung",
|
||||||
"freeSchedulingPollMetaTitle": "Erstelle sofort eine kostenlose Terminplanungsumfrage | Kein Konto erforderlich",
|
"freeSchedulingPollMetaTitle": "Kostenlose Umfrage zur Terminfindung | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Erstelle in Sekunden eine kostenlose Terminumfrage. Ideal zur Organisation von Meetings, Veranstaltungen, Konferenzen, Sportteams und vielem mehr.",
|
"freeSchedulingPollMetaDescription": "Erstelle in Sekunden eine kostenlose Terminumfrage. Ideal zur Organisation von Meetings, Veranstaltungen, Konferenzen, Sportteams und vielem mehr.",
|
||||||
"freeSchedulingPollTitle": "Finde ein Datum für dein nächstes Event",
|
"freeSchedulingPollTitle": "Auf der Suche nach einem kostenlosen Tool zur Terminplanung?",
|
||||||
"freeSchedulingPollDescription": "Rallly ermöglicht es dir, schöne und einfach zu verwendende Terminumfragen zu erstellen, damit du die beste Zeit für dein nächstes Ereignis finden kannst.",
|
"freeSchedulingPollDescription": "Rallly ermöglicht es dir, schöne und einfach zu verwendende Terminumfragen zu erstellen, damit du die beste Zeit für dein nächstes Ereignis finden kannst.",
|
||||||
"new": "Neu",
|
"new": "Neu",
|
||||||
"metaTitle": "Rallly - Gruppenmeetings planen",
|
"metaTitle": "Rallly - Gruppenmeetings planen",
|
||||||
"metaDescription": "Erstelle Umfragen und stimme ab, um den besten Tag oder die beste Zeit zu finden. Eine kostenlose Alternative zu Doodle.",
|
"metaDescription": "Erstelle Umfragen und stimme ab, um den besten Tag oder die beste Zeit zu finden. Eine kostenlose Alternative zu Doodle.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 Self-Hosting",
|
||||||
"when2meetAlternativeMetaTitle": "Beste When2Meet Alternative: Rallly",
|
"when2meetAlternativeMetaTitle": "Beste When2Meet Alternative: Rallly",
|
||||||
"when2meetAlternativeMetaDescription": "Finde einen besseren Weg, Meetings mit Rallly zu planen, der besten kostenlosen When2Meet Alternative. Einfach zu bedienen und kostenlos.",
|
"when2meetAlternativeMetaDescription": "Finde einen besseren Weg, Meetings mit Rallly zu planen, der besten kostenlosen When2Meet Alternative. Einfach zu bedienen und kostenlos.",
|
||||||
"when2meetAlternative": "Du verwendest noch When2Meet?",
|
"when2meetAlternative": "Du verwendest noch When2Meet?",
|
||||||
"when2meetAlternativeDescription": "Erstellen Sie professionelle, werbefreie Meetingumfragen kostenlos mit Rallly.",
|
"when2meetAlternativeDescription": "Erstellen Sie professionelle, werbefreie Meetingumfragen kostenlos mit Rallly.",
|
||||||
"meetingPoll": "Erstelle professionelle Meetingumfragen mit Rallly",
|
"meetingPoll": "Erstelle professionelle Meetingumfragen mit Rallly",
|
||||||
"meetingPollDescription": "Meetingumfragen sind eine wunderbare Möglichkeit, die Verfügbarkeit von Menschen abzufragen. Mit Rallly kannst du mühelos wunderbare Umfragen für Meetings erstellen.",
|
"meetingPollDescription": "Meetingumfragen sind eine wunderbare Möglichkeit, die Verfügbarkeit von Menschen abzufragen. Mit Rallly kannst du mühelos wunderbare Umfragen für Meetings erstellen.",
|
||||||
"meetingPollMetaTitle": "Meetingumfrage",
|
"meetingPollMetaTitle": "Meetingumfrage"
|
||||||
"meetingPollMetaDescription": "Plane einfach Termine mit unserer Umfragefunktion, um die Verfügbarkeit aller zu sichern.",
|
|
||||||
"quickCreateBlog": "Einführung der Schnellerstellung"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
"planFreeDescription": "Für gelegentliche Nutzer",
|
"planFreeDescription": "Für gelegentliche Nutzer",
|
||||||
"limitedAccess": "Zugriff auf Kernfunktionen",
|
"limitedAccess": "Zugriff auf Kernfunktionen",
|
||||||
"pollsDeleted": "Umfragen werden automatisch gelöscht, sobald sie inaktiv werden",
|
"pollsDeleted": "Umfragen werden automatisch gelöscht, sobald sie inaktiv werden",
|
||||||
"planProDescription": "Für Poweruser und Profis",
|
"planProDescription": "Für Powernutzer und Profis",
|
||||||
"accessAllFeatures": "Alle Funktionen nutzen",
|
"accessAllFeatures": "Alle Funktionen nutzen",
|
||||||
"getEarlyAccess": "Frühzeitiger Zugang zu neuen Funktionen",
|
"getEarlyAccess": "Frühzeitiger Zugang zu neuen Funktionen",
|
||||||
"canUseFreeAnswer2": "Ja, die meisten Funktionen von Rallly sind kostenlos und viele Benutzer müssen für nichts bezahlen. Es gibt jedoch einige Features, die nur zahlenden Kunden zur Verfügung stehen. Diese Funktionen sind so konzipiert, dass du das Beste aus Rallly herausholen kannst.",
|
"canUseFreeAnswer2": "Ja, die meisten Funktionen von Rallly sind kostenlos und viele Benutzer müssen für nichts bezahlen. Es gibt jedoch einige Features, die nur zahlenden Kunden zur Verfügung stehen. Diese Funktionen sind so konzipiert, dass du das Beste aus Rallly herausholen kannst.",
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 not found",
|
"notFoundTitle": "404 not found",
|
||||||
"notFoundDescription": "We couldn't find the page you're looking for.",
|
"notFoundDescription": "We couldn't find the page you're looking for.",
|
||||||
"goToHome": "Go to home",
|
"goToHome": "Go to home",
|
||||||
|
"goToApp": "Go to app",
|
||||||
"pricing": "Pricing",
|
"pricing": "Pricing",
|
||||||
"bestDoodleAlternative": "Best Doodle Alternative",
|
"bestDoodleAlternative": "Best Doodle Alternative",
|
||||||
"freeSchedulingPoll": "Free Scheduling Poll",
|
"freeSchedulingPoll": "Free Scheduling Poll",
|
||||||
|
@ -24,6 +25,5 @@
|
||||||
"howItWorks": "How it Works",
|
"howItWorks": "How it Works",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
"when2MeetAlternative": "When2Meet Alternative",
|
"when2MeetAlternative": "When2Meet Alternative",
|
||||||
"meetingPoll": "Meeting Poll",
|
"meetingPoll": "Meeting Poll"
|
||||||
"signUp": "Sign Up"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Create a page like this in seconds!",
|
"createPageLikeThis": "Create a page like this in seconds!",
|
||||||
"noLoginRequired": "No login required",
|
"noLoginRequired": "No login required",
|
||||||
"headline": "Find the best time to meet",
|
"headline": "Ditch the back-and-forth emails",
|
||||||
"subheading": "Coordinate group meetings without the back-and-forth emails",
|
"subheading": "Streamline your scheduling process and save time",
|
||||||
"pcmagQuote": "“Set up a scheduling poll in as little time as possible.”",
|
"pcmagQuote": "“Set up a scheduling poll in as little time as possible.”",
|
||||||
"hubspotQuote": "“The simplest choice for availability polling for large groups.”",
|
"hubspotQuote": "“The simplest choice for availability polling for large groups.”",
|
||||||
"goodfirmsQuote": "“Unique in its simplicity and requires minimum interaction time.”",
|
"goodfirmsQuote": "“Unique in its simplicity and requires minimum interaction time.”",
|
||||||
|
@ -25,13 +25,14 @@
|
||||||
"doodleAlternativeMetaTitle": "Best Free Doodle Alternative | Rallly",
|
"doodleAlternativeMetaTitle": "Best Free Doodle Alternative | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Looking for a Doodle alternative? Try Rallly! It's free, easy to use, and doesn't require an account.",
|
"doodleAlternativeMetaDescription": "Looking for a Doodle alternative? Try Rallly! It's free, easy to use, and doesn't require an account.",
|
||||||
"createASchedulingPoll": "Create a Scheduling Poll",
|
"createASchedulingPoll": "Create a Scheduling Poll",
|
||||||
"freeSchedulingPollMetaTitle": "Create a Free Scheduling Poll Instantly | No Account Required",
|
"freeSchedulingPollMetaTitle": "Free Scheduling Poll | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Create a free scheduling poll in seconds. Ideal for organizing meetings, events, conferences, sports teams and more.",
|
"freeSchedulingPollMetaDescription": "Create a free scheduling poll in seconds. Ideal for organizing meetings, events, conferences, sports teams and more.",
|
||||||
"freeSchedulingPollTitle": "Find a date for your next event",
|
"freeSchedulingPollTitle": "Looking for a free scheduling poll?",
|
||||||
"freeSchedulingPollDescription": "Rallly let's you create beautiful and easy to use scheduling polls so you can find the best time for your next event.",
|
"freeSchedulingPollDescription": "Rallly let's you create beautiful and easy to use scheduling polls so you can find the best time for your next event.",
|
||||||
"new": "New",
|
"new": "New",
|
||||||
"metaTitle": "Rallly: Group Scheduling Tool",
|
"metaTitle": "Rallly: Group Scheduling Tool",
|
||||||
"metaDescription": "Rallly is the fastest and easiest scheduling and collaboration tool. Create a meeting poll in seconds, no login required.",
|
"metaDescription": "Rallly is the fastest and easiest scheduling and collaboration tool. Create a meeting poll in seconds, no login required.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 Self-Hosting",
|
||||||
"when2meetAlternativeMetaTitle": "Best When2Meet Alternative: Rallly",
|
"when2meetAlternativeMetaTitle": "Best When2Meet Alternative: Rallly",
|
||||||
"when2meetAlternativeMetaDescription": "Find a better way to schedule meetings with Rallly, the top free alternative to When2Meet. Easy to use and free.",
|
"when2meetAlternativeMetaDescription": "Find a better way to schedule meetings with Rallly, the top free alternative to When2Meet. Easy to use and free.",
|
||||||
"when2meetAlternative": "Still using When2Meet?",
|
"when2meetAlternative": "Still using When2Meet?",
|
||||||
|
@ -39,6 +40,5 @@
|
||||||
"meetingPoll": "Create professional meetings polls with Rallly",
|
"meetingPoll": "Create professional meetings polls with Rallly",
|
||||||
"meetingPollDescription": "Meeting polls are a great way to get people's availability. Rallly lets you create beautiful meeting polls with ease.",
|
"meetingPollDescription": "Meeting polls are a great way to get people's availability. Rallly lets you create beautiful meeting polls with ease.",
|
||||||
"meetingPollMetaTitle": "Meeting Poll",
|
"meetingPollMetaTitle": "Meeting Poll",
|
||||||
"meetingPollMetaDescription": "Easily schedule meetings with our poll feature, ensuring everyone's availability.",
|
"meetingPollMetaDescription": "Easily schedule meetings with our poll feature, ensuring everyone's availability."
|
||||||
"quickCreateBlog": "Introducing Quick Create"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,14 +15,13 @@
|
||||||
"notFoundTitle": "404 Página no encontrada",
|
"notFoundTitle": "404 Página no encontrada",
|
||||||
"notFoundDescription": "No pudimos encontrar la página que estás buscando.",
|
"notFoundDescription": "No pudimos encontrar la página que estás buscando.",
|
||||||
"goToHome": "Ir al inicio",
|
"goToHome": "Ir al inicio",
|
||||||
|
"goToApp": "Ir a app",
|
||||||
"pricing": "Precios",
|
"pricing": "Precios",
|
||||||
"bestDoodleAlternative": "Mejor alternativa a Doodle",
|
"bestDoodleAlternative": "Mejor alternativa de Doodle",
|
||||||
"freeSchedulingPoll": "Encuesta de programación gratuita",
|
"freeSchedulingPoll": "Encuesta gratuita de programación",
|
||||||
"getStarted": "Empezar",
|
"getStarted": "Empezar",
|
||||||
"availabilityPoll": "Encuesta de disponibilidad",
|
"availabilityPoll": "Encuesta de disponibilidad",
|
||||||
"solutions": "Soluciones",
|
"solutions": "Soluciones",
|
||||||
"howItWorks": "Cómo funciona",
|
"howItWorks": "Cómo funciona",
|
||||||
"status": "Estado",
|
"status": "Estado"
|
||||||
"when2MeetAlternative": "Alternativa a When2Meet",
|
|
||||||
"meetingPoll": "Encuesta de reunión"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "¡Crea una página como esta en segundos!",
|
"createPageLikeThis": "¡Crea una página como ésta en segundos!",
|
||||||
"noLoginRequired": "No es necesario iniciar sesión",
|
"noLoginRequired": "No es necesario iniciar sesión",
|
||||||
|
"headline": "Olvídate del ir y venir de correos",
|
||||||
|
"subheading": "Agiliza tu proceso de planeación y ahorra tiempo",
|
||||||
"pcmagQuote": "Configura una encuesta de horarios disponibles en el menor tiempo posible",
|
"pcmagQuote": "Configura una encuesta de horarios disponibles en el menor tiempo posible",
|
||||||
"hubspotQuote": "La elección más simple para encuestas de disponibilidad para grupos grandes",
|
"hubspotQuote": "La elección más simple para encuestas de disponibilidad para grupos grandes",
|
||||||
"goodfirmsQuote": "Único en su simplicidad y requiere un mínimo de tiempo de interacción",
|
"goodfirmsQuote": "Único en su simplicidad y requiere un mínimo de tiempo de interacción",
|
||||||
"popsciQuote": "La elección perfecta si quieres mantener tus confirmaciones de asistencia simples",
|
"popsciQuote": "La elección perfecta si quieres mantener tus confirmaciones de asistencia simples",
|
||||||
"ericQuote": "Si tu flujo de programación de horarios vive en correos electrónicos, te recomiendo ampliamente que pruebes Rallly y permitas que te ayude a simplificar tus tareas de programación para tener un día de trabajo más organizado y menos estresante",
|
"ericQuote": "Si tu flujo de programación de horarios vive en correos electrónicos, te recomiendo ampliamente que pruebes Rallly y permitas que te ayude a simplificar tus tareas de programación para tener un día de trabajo más organizado y menos estresante",
|
||||||
"viaTrustpilot": "mediante Trustpilot",
|
"viaTrustpilot": "Trustpilot",
|
||||||
"ericJobTitle": "Asistente Ejecutivo en el MIT",
|
"ericJobTitle": "Asistente Ejecutivo en MIT",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ usuarios registrados",
|
"statsLanguagesSupported": "Más de 10 idiomas soportados",
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ encuestas creadas",
|
|
||||||
"statsLanguagesSupported": "10+ idiomas soportados",
|
|
||||||
"hint": "¡Es gratis! No se requiere iniciar sesión.",
|
"hint": "¡Es gratis! No se requiere iniciar sesión.",
|
||||||
"doodleAlternative": "La mejor alternativa gratuita a Doodle",
|
"doodleAlternative": "Mejor alternativa gratuita de Doodle",
|
||||||
"doodleAlternativeDescription": "Rallly es la alternativa a Doodle que todo el mundo está buscando. Miles de usuarios ya han hecho el cambio y ahora disfrutan de encuestas profesionales sin anuncios en una interfaz intuitiva y fácil de usar. ",
|
"doodleAlternativeDescription": "Rallly es la alternativa a Doodle que todo el mundo está buscando. Miles de usuarios ya han hecho el cambio y ahora disfrutan de encuestas profesionales sin anuncios en una interfaz intuitiva y fácil de usar. ",
|
||||||
"availabilityPollCta": "Crear una encuesta de disponibilidad",
|
"availabilityPollCta": "Crear una encuesta de disponibilidad",
|
||||||
"availabilityPollMetaTitle": "Encuesta de Disponibilidad | Planificación en línea con Rallly",
|
"availabilityPollMetaTitle": "Encuesta de Disponibilidad | Planificación en línea con Rallly",
|
||||||
|
@ -23,20 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Mejor alternativa de doodle alternativo | Rallly",
|
"doodleAlternativeMetaTitle": "Mejor alternativa de doodle alternativo | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "¿Buscas una alternativa a Doodle? ¡Prueba Rallly! Es gratis, fácil de usar y no requiere una cuenta.",
|
"doodleAlternativeMetaDescription": "¿Buscas una alternativa a Doodle? ¡Prueba Rallly! Es gratis, fácil de usar y no requiere una cuenta.",
|
||||||
"createASchedulingPoll": "Crear una encuesta de reunión",
|
"createASchedulingPoll": "Crear una encuesta de reunión",
|
||||||
"freeSchedulingPollMetaTitle": "Crea una encuesta de programación gratis al instante | No se necesita una cuenta",
|
"freeSchedulingPollMetaTitle": "Encuesta gratuita de reunión | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Crear una encuesta gratuita de reunión. Ideal para organizar reuniones, eventos, conferencias, equipos deportivos y más.",
|
"freeSchedulingPollMetaDescription": "Crear una encuesta gratuita de reunión. Ideal para organizar reuniones, eventos, conferencias, equipos deportivos y más.",
|
||||||
"freeSchedulingPollTitle": "Encuentra una fecha para tu próximo evento",
|
"freeSchedulingPollTitle": "¿Busca una encuesta gratuita de reunión?",
|
||||||
"freeSchedulingPollDescription": "Rallly le permite crear encuestas de reunión atractivas y fáciles de usar para que pueda encontrar el mejor momento para su próximo evento.",
|
"freeSchedulingPollDescription": "Rallly le permite crear encuestas de reunión atractivas y fáciles de usar para que pueda encontrar el mejor momento para su próximo evento.",
|
||||||
"new": "Nuevo",
|
"new": "Nuevo",
|
||||||
"metaTitle": "Rallly: Herramienta de programación para grupos",
|
"metaTitle": "Rallly - Programar reuniones de grupo",
|
||||||
"metaDescription": "Rally es la herramienta de planificación y colaboración más rápida y fácil. Crea una encuesta de reunión en segundos, no requiere registro.",
|
"metaDescription": "Crea encuestas y vota para encontrar el mejor día o la mejor hora. Una alternativa gratuita a Doodle.",
|
||||||
"when2meetAlternativeMetaTitle": "Mejor alternativa a When2Meet: Rallly",
|
"selfHostingBlog": "Rallly 3.0 Autoalojamiento"
|
||||||
"when2meetAlternativeMetaDescription": "Encuentra una mejor manera de programar reuniones con Rallly, la mejor alternativa gratuita a When2Meet. Fácil de usar y gratis.",
|
|
||||||
"when2meetAlternative": "¿Aún estás usando When2Meet?",
|
|
||||||
"when2meetAlternativeDescription": "Crea encuestas profesionales y sin anuncios con Rallly.",
|
|
||||||
"meetingPoll": "Crear encuestas para reuniones profesionales con Rallly",
|
|
||||||
"meetingPollDescription": "Las encuestas de reunión son una gran manera de averiguar la disponibilidad de la gente. Rallly te permite crear hermosas encuestas de reuniones con facilidad.",
|
|
||||||
"meetingPollMetaTitle": "Encuesta de reunión",
|
|
||||||
"meetingPollMetaDescription": "Programa reuniones fácilmente con nuestra función de encuesta, garantizando la disponibilidad de todos.",
|
|
||||||
"quickCreateBlog": "Presentando Creación Rápida"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
{
|
{
|
||||||
"pricingDescription": "Comienza a utilizarlo gratis. No se necesita iniciar sesión.",
|
"pricingDescription": "Comience a utilizarlo gratis. No se necesita tarjeta de crédito.",
|
||||||
"freeForever": "gratis para siempre",
|
"freeForever": "gratis para siempre",
|
||||||
"planPro": "Pro",
|
"planPro": "Pro",
|
||||||
"monthlyBillingDescription": "por mes",
|
"monthlyBillingDescription": "por mes",
|
||||||
"upgrade": "Mejorar",
|
"upgrade": "Mejorar",
|
||||||
"faq": "Preguntas frecuentes",
|
"faq": "Preguntas frecuentes",
|
||||||
"canUseFree": "¿Puedo usar Rallly de forma gratuita?",
|
"canUseFree": "¿Puedo usar Rallly de forma gratuita?",
|
||||||
"whyUpgrade": "¿Por qué debería mejorar a un plan de pago?",
|
"whyUpgrade": "¿Por qué debo mejorar?",
|
||||||
"howToUpgrade": "¿Cómo puedo cambiar a un plan de pago?",
|
"howToUpgrade": "¿Cómo puedo cambiar a un plan de pago?",
|
||||||
"howToUpgradeAnswer": "Para mejorar, puedes ir a tu <a>configuración de facturación</a> y hacer clic en <b>Mejorar</b>.",
|
"howToUpgradeAnswer": "Para mejorar, puedes ir a tu <a>configuración de facturación</a> y hacer clic en <b>Actualizar</b>.",
|
||||||
"cancelSubscription": "¿Cómo puedo cancelar mi suscripción?",
|
"cancelSubscription": "¿Cómo puedo cancelar mi suscripción?",
|
||||||
"cancelSubscriptionAnswer": "Puedes cancelar tu suscripción en cualquier momento dirigiéndote a tu <a>configuración de facturación</a>. Una vez que cancele su suscripción, tendrá acceso a su plan de pago hasta el final de su período de facturación. Después, usted será degradado a un plan gratuito.",
|
"cancelSubscriptionAnswer": "Puedes cancelar tu suscripción en cualquier momento dirigiéndote a tu <a>configuración de facturación</a>. Una vez que cancele su suscripción, tendrá acceso a su plan de pago hasta el final de su período de facturación. Después, usted será degradado a un plan gratuito.",
|
||||||
"billingPeriodMonthly": "Mensual",
|
"billingPeriodMonthly": "Mensual",
|
||||||
|
@ -23,12 +23,10 @@
|
||||||
"whyUpgradeAnswer2": "Mejorar a un plan de pago tiene sentido si usas Rallly a menudo o lo usas para trabajar. La tasa de suscripción actual es una tasa especial de adopción temprana y se incrementará en el futuro. Actualizando ahora, obtendrás acceso temprano a nuevas herramientas de programación de alta calidad a medida que se liberan y se bloquean en su tarifa de suscripción para que no se vea afectado por aumentos de precios futuros.",
|
"whyUpgradeAnswer2": "Mejorar a un plan de pago tiene sentido si usas Rallly a menudo o lo usas para trabajar. La tasa de suscripción actual es una tasa especial de adopción temprana y se incrementará en el futuro. Actualizando ahora, obtendrás acceso temprano a nuevas herramientas de programación de alta calidad a medida que se liberan y se bloquean en su tarifa de suscripción para que no se vea afectado por aumentos de precios futuros.",
|
||||||
"upgradeNowSaveLater": "Actualizar ahora, guardar más tarde",
|
"upgradeNowSaveLater": "Actualizar ahora, guardar más tarde",
|
||||||
"earlyAdopterDescription": "Como usuario pionero, fijará su tarifa de suscripción y no se verá afectado por futuras subidas de precios.",
|
"earlyAdopterDescription": "Como usuario pionero, fijará su tarifa de suscripción y no se verá afectado por futuras subidas de precios.",
|
||||||
"planFree": "Gratuito",
|
"planFree": "Gratis",
|
||||||
"keepPollsIndefinitely": "Mantener encuestas indefinidamente",
|
"keepPollsIndefinitely": "Mantener encuestas indefinidamente",
|
||||||
"whenPollInactive": "¿Cuándo una encuesta se vuelve inactiva?",
|
"whenPollInactive": "¿Cuándo una encuesta se vuelve inactiva?",
|
||||||
"whenPollInactiveAnswer": "Las encuestas se vuelven inactivas cuando todas las opciones de fecha están en el pasado Y la encuesta no ha sido accedida durante más de 30 días. Las encuestas inactivas se eliminan automáticamente si no tienes una suscripción de pago.",
|
"whenPollInactiveAnswer": "Las encuestas se vuelven inactivas cuando todas las opciones de fecha están en el pasado Y la encuesta no ha sido accedida durante más de 30 días. Las encuestas inactivas se eliminan automáticamente si no tienes una suscripción de pago.",
|
||||||
"yearlyBillingDescription": "por año",
|
"yearlyBillingDescription": "por año",
|
||||||
"annualBenefit": "{count} meses gratis",
|
"annualBenefit": "{count} meses gratis"
|
||||||
"pricingTitle": "Empieza de manera gratuita",
|
|
||||||
"pricingSubtitle": "Cambia a un plan de pago para acceder a funciones premium"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 not found",
|
"notFoundTitle": "404 not found",
|
||||||
"notFoundDescription": "Ez dugu aurkitzen bilatzen ari zaren orria.",
|
"notFoundDescription": "Ez dugu aurkitzen bilatzen ari zaren orria.",
|
||||||
"goToHome": "Hasierara joan",
|
"goToHome": "Hasierara joan",
|
||||||
|
"goToApp": "Aplikaziora joan",
|
||||||
"pricing": "Prezioak",
|
"pricing": "Prezioak",
|
||||||
"bestDoodleAlternative": "Doodleen alternatiba onena",
|
"bestDoodleAlternative": "Doodleen alternatiba onena",
|
||||||
"freeSchedulingPoll": "Dohan antolatu daitezkeen galdetegiak",
|
"freeSchedulingPoll": "Dohan antolatu daitezkeen galdetegiak",
|
||||||
|
@ -22,7 +23,5 @@
|
||||||
"availabilityPoll": "Prestasun-galdetegia",
|
"availabilityPoll": "Prestasun-galdetegia",
|
||||||
"solutions": "Soluzioak",
|
"solutions": "Soluzioak",
|
||||||
"howItWorks": "Nola funtzionatzen duen",
|
"howItWorks": "Nola funtzionatzen duen",
|
||||||
"status": "Egoera",
|
"status": "Egoera"
|
||||||
"when2MeetAlternative": "When2Meet-en alternatiba",
|
|
||||||
"meetingPoll": "Bileraren galdetegia"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Sortu horrelako orria segundo gutxitan!",
|
"createPageLikeThis": "Sortu horrelako orria segundo gutxitan!",
|
||||||
"noLoginRequired": "Ez da beharrezkoa saioa hastea",
|
"noLoginRequired": "Ez da beharrezkoa saioa hastea",
|
||||||
|
"headline": "Ahaztu joan-etorriko mezu luzeak",
|
||||||
|
"subheading": "Arrazionalizatu zure programazio-prozesua eta aurreztu denbora",
|
||||||
"pcmagQuote": "\"Konfiguratu galdeketa bat ahalik eta denbora gutxienean\"",
|
"pcmagQuote": "\"Konfiguratu galdeketa bat ahalik eta denbora gutxienean\"",
|
||||||
"hubspotQuote": "“Talde handientzako prestutasun-galdetegiak egiteko aukerarik sinpleena”",
|
"hubspotQuote": "“Talde handientzako prestutasun-galdetegiak egiteko aukerarik sinpleena”",
|
||||||
"goodfirmsQuote": "“Sinplea da, eta gutxieneko interakzio-denbora behar du.”",
|
"goodfirmsQuote": "“Sinplea da, eta gutxieneko interakzio-denbora behar du.”",
|
||||||
|
@ -8,8 +10,6 @@
|
||||||
"ericQuote": "“Programazioko zure lan-fluxua mezu elektronikoetan bizi bada, Ralllyk zure programazio-lanak sinplifikatzera animatzen zaitut, lan-egun antolatuago eta estresagarriago baterako”",
|
"ericQuote": "“Programazioko zure lan-fluxua mezu elektronikoetan bizi bada, Ralllyk zure programazio-lanak sinplifikatzera animatzen zaitut, lan-egun antolatuago eta estresagarriago baterako”",
|
||||||
"viaTrustpilot": "trustpiloten bitartez",
|
"viaTrustpilot": "trustpiloten bitartez",
|
||||||
"ericJobTitle": "MIT, laguntzaile exekutiboa",
|
"ericJobTitle": "MIT, laguntzaile exekutiboa",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ erregistratutako erabiltzaileak",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ inkestak sortu dira",
|
|
||||||
"statsLanguagesSupported": "10 hizkuntza baino gehiago",
|
"statsLanguagesSupported": "10 hizkuntza baino gehiago",
|
||||||
"hint": "Dohakoa da! Ez da erregistratu behar.",
|
"hint": "Dohakoa da! Ez da erregistratu behar.",
|
||||||
"doodleAlternative": "Doodleen alternatiba onena",
|
"doodleAlternative": "Doodleen alternatiba onena",
|
||||||
|
@ -23,20 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Doodlen dohako alternatiba onena | Rallly",
|
"doodleAlternativeMetaTitle": "Doodlen dohako alternatiba onena | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Doodlen alternatiba baten bila? Rallly probatu! Dohakoa da, erabilerraza eta ez duzu konturik behar.",
|
"doodleAlternativeMetaDescription": "Doodlen alternatiba baten bila? Rallly probatu! Dohakoa da, erabilerraza eta ez duzu konturik behar.",
|
||||||
"createASchedulingPoll": "Sortu programazio galdetegi bat",
|
"createASchedulingPoll": "Sortu programazio galdetegi bat",
|
||||||
"freeSchedulingPollMetaTitle": "Sortu doako programazio-inkesta bat berehala | Ez da konturik behar",
|
"freeSchedulingPollMetaTitle": "Dohako programazio galdetegiak | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Sortu programazio galdetegi bat segundo gutxitan. Bilera antolatzaileentzako, konferentzietarako eta kirol taldeentzako egokia.",
|
"freeSchedulingPollMetaDescription": "Sortu programazio galdetegi bat segundo gutxitan. Bilera antolatzaileentzako, konferentzietarako eta kirol taldeentzako egokia.",
|
||||||
"freeSchedulingPollTitle": "Bilatu data bat zure hurrengo ekitaldirako",
|
"freeSchedulingPollTitle": "Dohako antolaketa inkesta baten bila?",
|
||||||
"freeSchedulingPollDescription": "Rallly-k galdetegi politak eta erabilerrazak sortuko ditu, hurrengo ekitaldirako unerik onena aurki dezazun.",
|
"freeSchedulingPollDescription": "Rallly-k galdetegi politak eta erabilerrazak sortuko ditu, hurrengo ekitaldirako unerik onena aurki dezazun.",
|
||||||
"new": "Berria",
|
"new": "Berria",
|
||||||
"metaTitle": "Rallly - Programatu taldeko bilerak",
|
"metaTitle": "Rallly - Programatu taldeko bilerak",
|
||||||
"metaDescription": "Sortu galdetegiak eta aukeratu egun eta ordu egokiena. Doodlen dohako alternatiba.",
|
"metaDescription": "Sortu galdetegiak eta aukeratu egun eta ordu egokiena. Doodlen dohako alternatiba.",
|
||||||
"when2meetAlternativeMetaTitle": "When2Meet-en alternatibarik onena: Rallly",
|
"selfHostingBlog": "Rallly 3.0 Auto-Hostinga"
|
||||||
"when2meetAlternativeMetaDescription": "Bilatu bilerak antolatzeko modu hobe bat Rallly-rekin, When2Meet-en doako alternatiba nagusia. Erabiltzeko erraza eta doakoa.",
|
|
||||||
"when2meetAlternative": "Oraindik erabiltzen duzu When2Meet?",
|
|
||||||
"when2meetAlternativeDescription": "Sortu iragarkirik gabeko bilera-galdetegiak dohainik Rallly-rekin.",
|
|
||||||
"meetingPoll": "Sortu bilera profesionalen galdetegiak Rallly-rekin",
|
|
||||||
"meetingPollDescription": "Bilera-galdetegiak jendearen prestutasuna lortzeko modu bikaina dira. Rallly-k bilera-galdetegi ederrak erraz sortzeko aukera ematen dizu.",
|
|
||||||
"meetingPollMetaTitle": "Bilera-galdetegia",
|
|
||||||
"meetingPollMetaDescription": "Antolatu bilerak erraz gure galdetegia funtzioarekin, guztion prestutasuna ziurtatuz.",
|
|
||||||
"quickCreateBlog": "Begiratu Sortze azkarra"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,5 @@
|
||||||
"whenPollInactive": "Noiz bihurtzen da inkesta bat inaktibo?",
|
"whenPollInactive": "Noiz bihurtzen da inkesta bat inaktibo?",
|
||||||
"whenPollInactiveAnswer": "Inkestak inaktibo bihurtzen dira data-aukera guztiak iraungitzen direnean ETA 30 egun baino gehiagotan galdetegia atzitu ez denean. Galdetegi inaktiboak automatikoki ezabatzen dira ordainpeko harpidetzarik ez baduzu.",
|
"whenPollInactiveAnswer": "Inkestak inaktibo bihurtzen dira data-aukera guztiak iraungitzen direnean ETA 30 egun baino gehiagotan galdetegia atzitu ez denean. Galdetegi inaktiboak automatikoki ezabatzen dira ordainpeko harpidetzarik ez baduzu.",
|
||||||
"yearlyBillingDescription": "urteko",
|
"yearlyBillingDescription": "urteko",
|
||||||
"annualBenefit": "{count} hilabete doan",
|
"annualBenefit": "{count} hilabete doan"
|
||||||
"pricingTitle": "Hasi doan",
|
|
||||||
"pricingSubtitle": "Bertsio-berritu ordainpeko plan batera premium eginbideetarako sarbidea izateko"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 ei löytynyt",
|
"notFoundTitle": "404 ei löytynyt",
|
||||||
"notFoundDescription": "Emme löytäneet hakemaasi sivua.",
|
"notFoundDescription": "Emme löytäneet hakemaasi sivua.",
|
||||||
"goToHome": "Siirry etusivulle",
|
"goToHome": "Siirry etusivulle",
|
||||||
|
"goToApp": "Avaa sovellus",
|
||||||
"pricing": "Hinnasto",
|
"pricing": "Hinnasto",
|
||||||
"bestDoodleAlternative": "Paras vaihtoehto Doodlelle",
|
"bestDoodleAlternative": "Paras vaihtoehto Doodlelle",
|
||||||
"freeSchedulingPoll": "Ilmainen aikataulukysely",
|
"freeSchedulingPoll": "Ilmainen aikataulukysely",
|
||||||
|
@ -24,6 +25,5 @@
|
||||||
"howItWorks": "Näin se toimii",
|
"howItWorks": "Näin se toimii",
|
||||||
"status": "Tila",
|
"status": "Tila",
|
||||||
"when2MeetAlternative": "Vaihtoehto When2Meetille",
|
"when2MeetAlternative": "Vaihtoehto When2Meetille",
|
||||||
"meetingPoll": "Kokouskysely",
|
"meetingPoll": "Kokouskysely"
|
||||||
"signUp": "Rekisteröidy"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Luo tällainen sivu sekunneissa!",
|
"createPageLikeThis": "Luo tällainen sivu sekunneissa!",
|
||||||
"noLoginRequired": "Kirjautumista ei tarvita",
|
"noLoginRequired": "Kirjautumista ei tarvita",
|
||||||
"headline": "Löydä paras aika tapaamiselle",
|
"headline": "Sano hyvästi edestakaisin viestittelylle",
|
||||||
"subheading": "Järjestä ryhmätapaamisia ilman edestakaisin viestittelyä",
|
"subheading": "Aikatauluta sujuvasti ja säästä aikaa",
|
||||||
"pcmagQuote": "”Luo aikataulukysely niin lyhyessä ajassa kuin vain mahdollista.”",
|
"pcmagQuote": "”Luo aikataulukysely niin lyhyessä ajassa kuin vain mahdollista.”",
|
||||||
"hubspotQuote": "”Isojen ryhmien vaivattomin valinta tiedustella sopivia aikoja.”",
|
"hubspotQuote": "”Isojen ryhmien vaivattomin valinta tiedustella sopivia aikoja.”",
|
||||||
"goodfirmsQuote": "”Yksinkertaisuudessaan ainutlaatuinen ja vie hyvin vähän aikaa.”",
|
"goodfirmsQuote": "”Yksinkertaisuudessaan ainutlaatuinen ja vie hyvin vähän aikaa.”",
|
||||||
|
@ -25,13 +25,14 @@
|
||||||
"doodleAlternativeMetaTitle": "Paras ilmainen vaihtoehto Doodlelle | Rallly",
|
"doodleAlternativeMetaTitle": "Paras ilmainen vaihtoehto Doodlelle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Etsitkö vaihtoehtoa Doodlelle? Kokeile Ralllya! Se on ilmainen ja helppokäyttöinen, eikä se vaadi tunnusta.",
|
"doodleAlternativeMetaDescription": "Etsitkö vaihtoehtoa Doodlelle? Kokeile Ralllya! Se on ilmainen ja helppokäyttöinen, eikä se vaadi tunnusta.",
|
||||||
"createASchedulingPoll": "Luo aikataulukysely",
|
"createASchedulingPoll": "Luo aikataulukysely",
|
||||||
"freeSchedulingPollMetaTitle": "Luo ilmainen aikataulukysely hetkessä | Et tarvitse tiliä",
|
"freeSchedulingPollMetaTitle": "Ilmainen aikataulukysely | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Luo ilmainen aikataulukysely sekunneissa. Sopii erinomaisesti kokouksille, tapahtumille, konferensseille, urheilujoukkueille ja monelle muulle.",
|
"freeSchedulingPollMetaDescription": "Luo ilmainen aikataulukysely sekunneissa. Sopii erinomaisesti kokouksille, tapahtumille, konferensseille, urheilujoukkueille ja monelle muulle.",
|
||||||
"freeSchedulingPollTitle": "Löydä seuraavalle tapahtumallesi päivämäärä",
|
"freeSchedulingPollTitle": "Etsitkö ilmaista aikataulukyselyä?",
|
||||||
"freeSchedulingPollDescription": "Ralllyn avulla luot kauniita ja helppokäyttöisiä aikataulukyselyitä, joilla löydät parhaan ajankohdat seuraavaa tapahtumaasi varten.",
|
"freeSchedulingPollDescription": "Ralllyn avulla luot kauniita ja helppokäyttöisiä aikataulukyselyitä, joilla löydät parhaan ajankohdat seuraavaa tapahtumaasi varten.",
|
||||||
"new": "Uutta",
|
"new": "Uutta",
|
||||||
"metaTitle": "Rallly - Suunnittele ryhmätapaamisia",
|
"metaTitle": "Rallly - Suunnittele ryhmätapaamisia",
|
||||||
"metaDescription": "Luo kyselyitä ja äänestä parhaasta päivästä tai ajankohdasta. Ilmainen vaihtoehto Doodlelle.",
|
"metaDescription": "Luo kyselyitä ja äänestä parhaasta päivästä tai ajankohdasta. Ilmainen vaihtoehto Doodlelle.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 Itseisännöinti",
|
||||||
"when2meetAlternativeMetaTitle": "Paras vaihtoehto When2Meetille: Rallly",
|
"when2meetAlternativeMetaTitle": "Paras vaihtoehto When2Meetille: Rallly",
|
||||||
"when2meetAlternativeMetaDescription": "Löydä parempi tapa aikatauluttaa kokouksia Ralllyn avulla, joka on paras ilmainen vaihtoehto When2Meetille. Helppokäyttöinen ja ilmainen.",
|
"when2meetAlternativeMetaDescription": "Löydä parempi tapa aikatauluttaa kokouksia Ralllyn avulla, joka on paras ilmainen vaihtoehto When2Meetille. Helppokäyttöinen ja ilmainen.",
|
||||||
"when2meetAlternative": "Käytätkö yhä When2Meetiä?",
|
"when2meetAlternative": "Käytätkö yhä When2Meetiä?",
|
||||||
|
@ -39,6 +40,5 @@
|
||||||
"meetingPoll": "Luo ammattimaisia kokouskyselyitä Ralllyn avulla",
|
"meetingPoll": "Luo ammattimaisia kokouskyselyitä Ralllyn avulla",
|
||||||
"meetingPollDescription": "Kokouskyselyt ovat loistava tapa tiedustella muille sopivia aikoja. Rallly avulla voit luoda kauniita kokouskyselyitä helposti.",
|
"meetingPollDescription": "Kokouskyselyt ovat loistava tapa tiedustella muille sopivia aikoja. Rallly avulla voit luoda kauniita kokouskyselyitä helposti.",
|
||||||
"meetingPollMetaTitle": "Kokouskysely",
|
"meetingPollMetaTitle": "Kokouskysely",
|
||||||
"meetingPollMetaDescription": "Kyselyominaisuutemme avulla aikataulutat kokoukset helposti ja varmistat kaikille sopivan ajan.",
|
"meetingPollMetaDescription": "Kyselyominaisuutemme avulla aikataulutat kokoukset helposti ja varmistat kaikille sopivan ajan."
|
||||||
"quickCreateBlog": "Esittelyssä pikaluonti"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 introuvable",
|
"notFoundTitle": "404 introuvable",
|
||||||
"notFoundDescription": "Nous n'avons pas trouvé la page que vous recherchez.",
|
"notFoundDescription": "Nous n'avons pas trouvé la page que vous recherchez.",
|
||||||
"goToHome": "Retourner à la page d'accueil",
|
"goToHome": "Retourner à la page d'accueil",
|
||||||
|
"goToApp": "Accéder à l'application",
|
||||||
"pricing": "Tarifs",
|
"pricing": "Tarifs",
|
||||||
"bestDoodleAlternative": "Meilleure alternative Doodle",
|
"bestDoodleAlternative": "Meilleure alternative Doodle",
|
||||||
"freeSchedulingPoll": "Outil de planification libre",
|
"freeSchedulingPoll": "Outil de planification libre",
|
||||||
|
@ -24,6 +25,5 @@
|
||||||
"howItWorks": "Comment ça fonctionne",
|
"howItWorks": "Comment ça fonctionne",
|
||||||
"status": "Statut",
|
"status": "Statut",
|
||||||
"when2MeetAlternative": "Alternative à When2Meet",
|
"when2MeetAlternative": "Alternative à When2Meet",
|
||||||
"meetingPoll": "Sondage de Réunion",
|
"meetingPoll": "Sondage de Réunion"
|
||||||
"signUp": "S'inscrire"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Créez une page comme celle-ci en quelques secondes !",
|
"createPageLikeThis": "Créez une page comme celle-ci en quelques secondes!",
|
||||||
"noLoginRequired": "Pas de connexion requise",
|
"noLoginRequired": "Pas de connexion requise",
|
||||||
"headline": "Trouvez le meilleur moment pour vous réunir",
|
"headline": "Arrêtez les allers-retours d'emails",
|
||||||
"subheading": "Coordonner les réunions de groupe sans allers-retours par e-mails",
|
"subheading": "Simplifiez votre processus de planification et gagnez du temps",
|
||||||
"pcmagQuote": "« Mettre en place un sondage de planification le plus rapidement possible »",
|
"pcmagQuote": "« Mettre en place un sondage de planification le plus rapidement possible »",
|
||||||
"hubspotQuote": "« Le choix le plus simple pour les sondages de disponibilité pour de grands groupes. »",
|
"hubspotQuote": "« Le choix le plus simple pour les sondages de disponibilité pour de grandes organisations. »",
|
||||||
"goodfirmsQuote": "« Unique par sa simplicité et demandant un temps d’interaction minimum. »",
|
"goodfirmsQuote": "« Unique par sa simplicité et demandant un temps d’interaction minimum. »",
|
||||||
"popsciQuote": "« Le choix parfait si vous voulez garder vos RSVPs simple. »",
|
"popsciQuote": "« Le choix parfait si vous voulez garder vos RSVPs simple. »",
|
||||||
"ericQuote": "« Si votre travail de planification se fait via emails, fe vous encourage vivement à essayer Rallly \n et laisser le logiciel simplifier ce travail pour une journée de travail plus organisée et moins stressante.»",
|
"ericQuote": "« Si votre travail de planification se fait via emails, fe vous encourage vivement à essayer Rallly \n et laisser le logiciel simplifier ce travail pour une journée de travail plus organisée et moins stressante.»",
|
||||||
|
@ -25,13 +25,14 @@
|
||||||
"doodleAlternativeMetaTitle": "La meilleure alternative libre à Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "La meilleure alternative libre à Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "À la recherche d'une alternative à Doodle ? Essayez Rallly ! C'est gratuit, facile à utiliser et ne requiert pas de compte.",
|
"doodleAlternativeMetaDescription": "À la recherche d'une alternative à Doodle ? Essayez Rallly ! C'est gratuit, facile à utiliser et ne requiert pas de compte.",
|
||||||
"createASchedulingPoll": "Créer un sondage de planification",
|
"createASchedulingPoll": "Créer un sondage de planification",
|
||||||
"freeSchedulingPollMetaTitle": "Créer un sondage de groupe gratuitement et instantanément | Aucun compte requis",
|
"freeSchedulingPollMetaTitle": "Outil de planification gratuit | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Créez un sondage de planification gratuit en quelques secondes. Idéal pour organiser des réunions, des événements, des conférences, des équipes sportives et plus encore.",
|
"freeSchedulingPollMetaDescription": "Créez un sondage de planification gratuit en quelques secondes. Idéal pour organiser des réunions, des événements, des conférences, des équipes sportives et plus encore.",
|
||||||
"freeSchedulingPollTitle": "Trouvez une date pour votre prochain événement",
|
"freeSchedulingPollTitle": "Vous cherchez un outil de sondage gratuit ?",
|
||||||
"freeSchedulingPollDescription": "Rallly vous permet de créer des sondages beaux et simples afin de trouver le meilleur moment pour votre prochain événement.",
|
"freeSchedulingPollDescription": "Rallly vous permet de créer des sondages beaux et simples afin de trouver le meilleur moment pour votre prochain événement.",
|
||||||
"new": "Nouveau",
|
"new": "Nouveau",
|
||||||
"metaTitle": "Rallly - Planifier des réunions de groupe",
|
"metaTitle": "Rallly - Planifier des réunions de groupe",
|
||||||
"metaDescription": "Créez des sondages et votez pour trouver le meilleur jour ou la meilleure heure. Une alternative gratuite à Doodle.",
|
"metaDescription": "Créez des sondages et votez pour trouver le meilleur jour ou la meilleure heure. Une alternative gratuite à Doodle.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 auto-hébergé",
|
||||||
"when2meetAlternativeMetaTitle": "Meilleure Alternative à When2Meet : Rallly",
|
"when2meetAlternativeMetaTitle": "Meilleure Alternative à When2Meet : Rallly",
|
||||||
"when2meetAlternativeMetaDescription": "Trouvez une meilleure façon de planifier des réunions avec Rallly, la meilleure alternative gratuite à When2Meet. Facile à utiliser et gratuit.",
|
"when2meetAlternativeMetaDescription": "Trouvez une meilleure façon de planifier des réunions avec Rallly, la meilleure alternative gratuite à When2Meet. Facile à utiliser et gratuit.",
|
||||||
"when2meetAlternative": "Vous utilisez toujours When2Meet ?",
|
"when2meetAlternative": "Vous utilisez toujours When2Meet ?",
|
||||||
|
@ -39,6 +40,5 @@
|
||||||
"meetingPoll": "Créez des sondages professionnels avec Rallly",
|
"meetingPoll": "Créez des sondages professionnels avec Rallly",
|
||||||
"meetingPollDescription": "Les sondages de réunion sont un excellent moyen d'obtenir les disponibilités. Rallly vous permet de créer de beaux sondages de réunion en toute simplicité.",
|
"meetingPollDescription": "Les sondages de réunion sont un excellent moyen d'obtenir les disponibilités. Rallly vous permet de créer de beaux sondages de réunion en toute simplicité.",
|
||||||
"meetingPollMetaTitle": "Sondage de Réunion",
|
"meetingPollMetaTitle": "Sondage de Réunion",
|
||||||
"meetingPollMetaDescription": "Planifiez facilement des réunions avec notre fonction de sondage, assurant ainsi la disponibilité de chacun.",
|
"meetingPollMetaDescription": "Planifiez facilement des réunions avec notre fonction de sondage, assurant ainsi la disponibilité de chacun."
|
||||||
"quickCreateBlog": "Découvrez Création Rapide"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 Nije pronađeno",
|
"notFoundTitle": "404 Nije pronađeno",
|
||||||
"notFoundDescription": "Nije bilo moguće pronaći stranicu koju želite otvoriti.",
|
"notFoundDescription": "Nije bilo moguće pronaći stranicu koju želite otvoriti.",
|
||||||
"goToHome": "Idi na naslovnicu",
|
"goToHome": "Idi na naslovnicu",
|
||||||
|
"goToApp": "Idite u aplikaciju",
|
||||||
"pricing": "Cijene",
|
"pricing": "Cijene",
|
||||||
"bestDoodleAlternative": "Najbolja besplatna alternativa za Doodle",
|
"bestDoodleAlternative": "Najbolja besplatna alternativa za Doodle",
|
||||||
"freeSchedulingPoll": "Besplatne ankete za dogovor oko rasporeda",
|
"freeSchedulingPoll": "Besplatne ankete za dogovor oko rasporeda",
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Stvorite stranicu poput ove u par sekundi!",
|
"createPageLikeThis": "Stvorite stranicu poput ove u par sekundi!",
|
||||||
"noLoginRequired": "Nije potrebna prijava na sustav",
|
"noLoginRequired": "Nije potrebna prijava na sustav",
|
||||||
|
"headline": "Riješite se silnih poruka e-pošte za dogovore i odabire",
|
||||||
|
"subheading": "Poboljšajte postupak zakazivanja termina i uštedite na vremenu",
|
||||||
"pcmagQuote": "“Postavite anketu za dogovor oko rasporeda u što kraćem vremenu.”",
|
"pcmagQuote": "“Postavite anketu za dogovor oko rasporeda u što kraćem vremenu.”",
|
||||||
"hubspotQuote": "“Najjednostavniji izbor za anketiranje dostupnosti za velike skupine.”",
|
"hubspotQuote": "“Najjednostavniji izbor za anketiranje dostupnosti za velike skupine.”",
|
||||||
"goodfirmsQuote": "“Jedinstven u svojoj jednostavnosti i zahtijeva minimalno vrijeme interakcije.”",
|
"goodfirmsQuote": "“Jedinstven u svojoj jednostavnosti i zahtijeva minimalno vrijeme interakcije.”",
|
||||||
|
@ -21,9 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Najbolja besplatna Doodle alternativa",
|
"doodleAlternativeMetaTitle": "Najbolja besplatna Doodle alternativa",
|
||||||
"doodleAlternativeMetaDescription": "Tražite alternativu Doodleu? Isprobajte Rallly! Besplatan je, jednostavan za korištenje i ne zahtijeva račun.",
|
"doodleAlternativeMetaDescription": "Tražite alternativu Doodleu? Isprobajte Rallly! Besplatan je, jednostavan za korištenje i ne zahtijeva račun.",
|
||||||
"createASchedulingPoll": "Stvori anketu za sastanak",
|
"createASchedulingPoll": "Stvori anketu za sastanak",
|
||||||
|
"freeSchedulingPollMetaTitle": "Besplatna anketa za dogovor oko rasporeda | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Kreirajte besplatnu anketu za dogovor oko rasporeda u sekundama. Idealno za organiziranje sastanaka, događaja, konferencija, sportskih timova i još više.",
|
"freeSchedulingPollMetaDescription": "Kreirajte besplatnu anketu za dogovor oko rasporeda u sekundama. Idealno za organiziranje sastanaka, događaja, konferencija, sportskih timova i još više.",
|
||||||
|
"freeSchedulingPollTitle": "Tražite besplatnu anketu za dogovor oko rasporeda?",
|
||||||
"freeSchedulingPollDescription": "Rallly vam omogućuje stvaranje prekrasnih i jednostavnih anketa za dogovor oko rasporeda kako biste pronašli najbolje vrijeme za vaš sljedeći događaj.",
|
"freeSchedulingPollDescription": "Rallly vam omogućuje stvaranje prekrasnih i jednostavnih anketa za dogovor oko rasporeda kako biste pronašli najbolje vrijeme za vaš sljedeći događaj.",
|
||||||
"new": "Novo",
|
"new": "Novo",
|
||||||
"metaTitle": "Rallly - zakazivanje termina sastanaka",
|
"metaTitle": "Rallly - zakazivanje termina sastanaka",
|
||||||
"metaDescription": "Napravite ankete i glasajte kako biste pronašli najbolji dan ili vrijeme. Besplatna alternativa Doodleu."
|
"metaDescription": "Napravite ankete i glasajte kako biste pronašli najbolji dan ili vrijeme. Besplatna alternativa Doodleu.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 samostalni hosting"
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,5 @@
|
||||||
"whenPollInactive": "Kada anketa postaje neaktivna?",
|
"whenPollInactive": "Kada anketa postaje neaktivna?",
|
||||||
"whenPollInactiveAnswer": "Ankete postaju neaktivne kada su sve opcije datuma prošle I anketa nije pristupljena više od 30 dana. Neaktivne ankete se automatski brišu ako nemate plaćenu pretplatu.",
|
"whenPollInactiveAnswer": "Ankete postaju neaktivne kada su sve opcije datuma prošle I anketa nije pristupljena više od 30 dana. Neaktivne ankete se automatski brišu ako nemate plaćenu pretplatu.",
|
||||||
"yearlyBillingDescription": "godišnje",
|
"yearlyBillingDescription": "godišnje",
|
||||||
"annualBenefit": "{count} mjeseci besplatno",
|
"annualBenefit": "{count} mjeseci besplatno"
|
||||||
"pricingTitle": "Započnite besplatno"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 az oldal nem található",
|
"notFoundTitle": "404 az oldal nem található",
|
||||||
"notFoundDescription": "Nem található az oldal, amit keresel.",
|
"notFoundDescription": "Nem található az oldal, amit keresel.",
|
||||||
"goToHome": "Irány a főoldal",
|
"goToHome": "Irány a főoldal",
|
||||||
|
"goToApp": "Irány az app",
|
||||||
"pricing": "Árazás",
|
"pricing": "Árazás",
|
||||||
"bestDoodleAlternative": "Legjobb Doodle alternatíva",
|
"bestDoodleAlternative": "Legjobb Doodle alternatíva",
|
||||||
"freeSchedulingPoll": "Ingyenes ütemezés szavazás",
|
"freeSchedulingPoll": "Ingyenes ütemezés szavazás",
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Hozz létre szavazást pillanatok alatt!",
|
"createPageLikeThis": "Hozz létre szavazást pillanatok alatt!",
|
||||||
"noLoginRequired": "Bejelentkezés nem szükséges",
|
"noLoginRequired": "Bejelentkezés nem szükséges",
|
||||||
|
"headline": "Kerüld el az adok-kapok levelezést",
|
||||||
|
"subheading": "Egyszerűsítsd az ütemezési folyamataid és takaríts meg időt",
|
||||||
"pcmagQuote": "\"Állítsd össze időpont szavazások a lehető legrövidebb idő alatt.\"",
|
"pcmagQuote": "\"Állítsd össze időpont szavazások a lehető legrövidebb idő alatt.\"",
|
||||||
"hubspotQuote": "\"A legegyszerűbb választás elérhetőség felméréshez nagy csoportok számára.\"",
|
"hubspotQuote": "\"A legegyszerűbb választás elérhetőség felméréshez nagy csoportok számára.\"",
|
||||||
"goodfirmsQuote": "\"Egyedi az egyszerűségében és minimális időráfordítást igényel.\"",
|
"goodfirmsQuote": "\"Egyedi az egyszerűségében és minimális időráfordítást igényel.\"",
|
||||||
|
@ -23,13 +25,14 @@
|
||||||
"doodleAlternativeMetaTitle": "Legjobb ingyenes Doodle alternatíva | Rallly",
|
"doodleAlternativeMetaTitle": "Legjobb ingyenes Doodle alternatíva | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Egy Doodle alternatívát keresel? Próbáld ki a Rallly-t! Ingyenes, egyszerű használni és nem igényel regisztrációt.",
|
"doodleAlternativeMetaDescription": "Egy Doodle alternatívát keresel? Próbáld ki a Rallly-t! Ingyenes, egyszerű használni és nem igényel regisztrációt.",
|
||||||
"createASchedulingPoll": "Hozz létre egy ütemező szavazást",
|
"createASchedulingPoll": "Hozz létre egy ütemező szavazást",
|
||||||
"freeSchedulingPollMetaTitle": "Hozz létre ingyen időpontkereső szavazásokat egy pillanat alatt | Nem szükséges hozzá fiók",
|
"freeSchedulingPollMetaTitle": "Ingyenes ütemező szavazás | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Hozz létre ingyenes ütemező szavazást pillanatok alatt. Tökéletes találkozók, események, konferenciák rendezésére, sport csapatok és még sok mindenki számára.",
|
"freeSchedulingPollMetaDescription": "Hozz létre ingyenes ütemező szavazást pillanatok alatt. Tökéletes találkozók, események, konferenciák rendezésére, sport csapatok és még sok mindenki számára.",
|
||||||
"freeSchedulingPollTitle": "Találj időpontot a következő találkozódhoz",
|
"freeSchedulingPollTitle": "Ingyenes ütemező szavazást keresel?",
|
||||||
"freeSchedulingPollDescription": "A Rallly segít hogy létrehozz gyönyörű és könnyen használható szavazásokat, hogy megtaláld a legjobb időpontot a következő eseményedhez.",
|
"freeSchedulingPollDescription": "A Rallly segít hogy létrehozz gyönyörű és könnyen használható szavazásokat, hogy megtaláld a legjobb időpontot a következő eseményedhez.",
|
||||||
"new": "Új",
|
"new": "Új",
|
||||||
"metaTitle": "Rallly - Ütemezz csoportos találkozókat",
|
"metaTitle": "Rallly - Ütemezz csoportos találkozókat",
|
||||||
"metaDescription": "Hozz létre szavazásokat és szavazz, hogy megtaláld a legjobb napot vagy időt. Egy ingyenes Doodle alternatíva.",
|
"metaDescription": "Hozz létre szavazásokat és szavazz, hogy megtaláld a legjobb napot vagy időt. Egy ingyenes Doodle alternatíva.",
|
||||||
|
"selfHostingBlog": "Hostold magadnak a Rallly 3.0-t",
|
||||||
"when2meetAlternativeMetaTitle": "Legjobb When2Meet alternatíva: Rallly",
|
"when2meetAlternativeMetaTitle": "Legjobb When2Meet alternatíva: Rallly",
|
||||||
"when2meetAlternativeMetaDescription": "Találj jobb módot a találkozók időpontjainak megszervezésére a Rallly segítségével, a When2Meet legjobb ingyenes alternatívájával. Könnyen használható és ingyenes.",
|
"when2meetAlternativeMetaDescription": "Találj jobb módot a találkozók időpontjainak megszervezésére a Rallly segítségével, a When2Meet legjobb ingyenes alternatívájával. Könnyen használható és ingyenes.",
|
||||||
"when2meetAlternative": "Még mindig When2Meet-et használsz?",
|
"when2meetAlternative": "Még mindig When2Meet-et használsz?",
|
||||||
|
@ -37,6 +40,5 @@
|
||||||
"meetingPoll": "Hozz létre profi találkozó szavazásokat a Rallly segítségével",
|
"meetingPoll": "Hozz létre profi találkozó szavazásokat a Rallly segítségével",
|
||||||
"meetingPollDescription": "A találkozó szavazás egy szuper módja az emberek elérhetőségének áttekintésére. A Rallly segítségével könnyedén hozhatsz létre csodálatos szavazásokat.",
|
"meetingPollDescription": "A találkozó szavazás egy szuper módja az emberek elérhetőségének áttekintésére. A Rallly segítségével könnyedén hozhatsz létre csodálatos szavazásokat.",
|
||||||
"meetingPollMetaTitle": "Találkozó szavazás",
|
"meetingPollMetaTitle": "Találkozó szavazás",
|
||||||
"meetingPollMetaDescription": "Ütemezz könnyedén találkozókat a szavazás funkcióval, biztosítva, hogy mindenki ráérjen.",
|
"meetingPollMetaDescription": "Ütemezz könnyedén találkozókat a szavazás funkcióval, biztosítva, hogy mindenki ráérjen."
|
||||||
"quickCreateBlog": "Gyors létrehozás funkció"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
"canUseFree": "Használhatom a Rallly-t ingyen?",
|
"canUseFree": "Használhatom a Rallly-t ingyen?",
|
||||||
"whyUpgrade": "Miért fizessek elő?",
|
"whyUpgrade": "Miért fizessek elő?",
|
||||||
"howToUpgrade": "Hogyan válthatok fizetős csomagra?",
|
"howToUpgrade": "Hogyan válthatok fizetős csomagra?",
|
||||||
"howToUpgradeAnswer": "Az előfizetéshez nyisd meg a <a>számlázási beállítások</a>at és kattints a <b>Pro-ra váltás</b> gombra.",
|
"howToUpgradeAnswer": "Az előfizetéshez menj a <a>számlázási beállításokhoz</a> és kattints az <b>Előfizetés</b> gombra.",
|
||||||
"cancelSubscription": "Hogyan mondhatom le az előfizetésemet?",
|
"cancelSubscription": "Hogyan mondhatom le az előfizetésemet?",
|
||||||
"cancelSubscriptionAnswer": "Bármikor lemondhatod az előfizetésed ha megnyitod a <a>számlázási beállítások</a>at. Amennyiben lemondod az előfizetésed, úgy továbbra is elérhető lesz a fizetős csomagod a számlázási időszak végéig. Azt követően lefokozódsz ingyenes csomagra.",
|
"cancelSubscriptionAnswer": "Bármikor lemondhatod az előfizetésed ha belépsz a <a>számlázási beállításokba</a>. Amennyiben lemondod az előfizetésed, úgy továbbra is elérhető lesz a fizetős csomagod a számlázási időszak végéig. Azt követően lefokozódsz ingyenes csomagra.",
|
||||||
"billingPeriodMonthly": "Havi",
|
"billingPeriodMonthly": "Havi",
|
||||||
"billingPeriodYearly": "Éves",
|
"billingPeriodYearly": "Éves",
|
||||||
"planFreeDescription": "Hétköznapi felhasználóknak",
|
"planFreeDescription": "Hétköznapi felhasználóknak",
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 non trovato",
|
"notFoundTitle": "404 non trovato",
|
||||||
"notFoundDescription": "Non abbiamo trovato la pagina che stavi cercando.",
|
"notFoundDescription": "Non abbiamo trovato la pagina che stavi cercando.",
|
||||||
"goToHome": "Vai alla home",
|
"goToHome": "Vai alla home",
|
||||||
|
"goToApp": "Vai all’app",
|
||||||
"pricing": "Prezzi",
|
"pricing": "Prezzi",
|
||||||
"bestDoodleAlternative": "Migliore alternativa Doodle",
|
"bestDoodleAlternative": "Migliore alternativa Doodle",
|
||||||
"freeSchedulingPoll": "Sondaggio Di Pianificazione Gratuito",
|
"freeSchedulingPoll": "Sondaggio Di Pianificazione Gratuito",
|
||||||
|
@ -22,7 +23,5 @@
|
||||||
"availabilityPoll": "Sondaggio Di Disponibilità",
|
"availabilityPoll": "Sondaggio Di Disponibilità",
|
||||||
"solutions": "Soluzioni",
|
"solutions": "Soluzioni",
|
||||||
"howItWorks": "Come funziona",
|
"howItWorks": "Come funziona",
|
||||||
"status": "Stato",
|
"status": "Stato"
|
||||||
"when2MeetAlternative": "Alternativa When2Meet",
|
|
||||||
"meetingPoll": "Sondaggio per Riunione"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Crea una pagina come questa in pochi secondi!",
|
"createPageLikeThis": "Crea una pagina come questa in pochi secondi!",
|
||||||
"noLoginRequired": "Login non necessario",
|
"noLoginRequired": "Login non necessario",
|
||||||
|
"headline": "Abbandona avanti e indietro di email",
|
||||||
|
"subheading": "Semplifica il processo di programmazione e risparmia tempo",
|
||||||
"pcmagQuote": "Imposta un sondaggio di pianificazione in pochissimo tempo",
|
"pcmagQuote": "Imposta un sondaggio di pianificazione in pochissimo tempo",
|
||||||
"hubspotQuote": "La soluzione più semplice per i sondaggi di fattibilità per gruppi numerosi",
|
"hubspotQuote": "La soluzione più semplice per i sondaggi di fattibilità per gruppi numerosi",
|
||||||
"goodfirmsQuote": "Unico nella sua semplicità, richiede un tempo d'interazione minimo",
|
"goodfirmsQuote": "Unico nella sua semplicità, richiede un tempo d'interazione minimo",
|
||||||
|
@ -8,8 +10,6 @@
|
||||||
"ericQuote": "Se il vostro flusso di lavoro di pianificazione passa per le e-mail, vi incoraggio caldamente a lasciare che Rallly semplifichi le vostre attività di pianificazione per una giornata di lavoro più organizzata e meno stressante",
|
"ericQuote": "Se il vostro flusso di lavoro di pianificazione passa per le e-mail, vi incoraggio caldamente a lasciare che Rallly semplifichi le vostre attività di pianificazione per una giornata di lavoro più organizzata e meno stressante",
|
||||||
"viaTrustpilot": "via Trustpilot",
|
"viaTrustpilot": "via Trustpilot",
|
||||||
"ericJobTitle": "Assistente esecutivo al MIT",
|
"ericJobTitle": "Assistente esecutivo al MIT",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ utenze registrate",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ sondaggi creati",
|
|
||||||
"statsLanguagesSupported": "10+ lingue supportate",
|
"statsLanguagesSupported": "10+ lingue supportate",
|
||||||
"hint": "È gratuito! Nessun login richiesto.",
|
"hint": "È gratuito! Nessun login richiesto.",
|
||||||
"doodleAlternative": "La migliore alternativa gratis a Doodle",
|
"doodleAlternative": "La migliore alternativa gratis a Doodle",
|
||||||
|
@ -23,20 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Miglior alternativa a Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Miglior alternativa a Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Cerchi un alternativa a Doodle? Prova Rallly! È gratis, facile da usare, è non richiede nessun account.",
|
"doodleAlternativeMetaDescription": "Cerchi un alternativa a Doodle? Prova Rallly! È gratis, facile da usare, è non richiede nessun account.",
|
||||||
"createASchedulingPoll": "Crea un sondaggio di pianificazione",
|
"createASchedulingPoll": "Crea un sondaggio di pianificazione",
|
||||||
"freeSchedulingPollMetaTitle": "Crea gratuitamente un sondaggio di pianificazione istantaneamente| Nessuna Utenza Richiesta",
|
"freeSchedulingPollMetaTitle": "Sondaggio Di Programmazione Gratuito | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Crea un sondaggio di pianificazione gratuito in pochi secondi. Ideale per organizzare riunioni, eventi, conferenze, squadre sportive e altro.",
|
"freeSchedulingPollMetaDescription": "Crea un sondaggio di pianificazione gratuito in pochi secondi. Ideale per organizzare riunioni, eventi, conferenze, squadre sportive e altro.",
|
||||||
"freeSchedulingPollTitle": "Trova una data per il tuo prossimo evento",
|
"freeSchedulingPollTitle": "Alla ricerca di un sondaggio di programmazione gratuita?",
|
||||||
"freeSchedulingPollDescription": "Rallly ti permette di creare sondaggi di programmazione belli e facili da usare in modo da poter trovare il momento migliore per il tuo prossimo evento.",
|
"freeSchedulingPollDescription": "Rallly ti permette di creare sondaggi di programmazione belli e facili da usare in modo da poter trovare il momento migliore per il tuo prossimo evento.",
|
||||||
"new": "Nuovo",
|
"new": "Nuovo",
|
||||||
"metaTitle": "Rallly - Programma incontri di gruppo",
|
"metaTitle": "Rallly - Programma incontri di gruppo",
|
||||||
"metaDescription": "Crea sondaggi e vota per trovare il miglior giorno o orario. Un alternativa gratuita a Doodle.",
|
"metaDescription": "Crea sondaggi e vota per trovare il miglior giorno o orario. Un alternativa gratuita a Doodle.",
|
||||||
"when2meetAlternativeMetaTitle": "Migliore Alternativa a When2Meet: Rallly",
|
"selfHostingBlog": "Rallly 3.0 Self-Hosting"
|
||||||
"when2meetAlternativeMetaDescription": "Trova un modo migliore per pianificare le riunioni con Rallly, la migliore alternativa gratuita a When2Meet. Facile da usare e gratis.",
|
|
||||||
"when2meetAlternative": "Stai ancora usando When2Meet?",
|
|
||||||
"when2meetAlternativeDescription": "Crea sondaggi di riunioni professionali, senza pubblicità, gratis, con Rallly.",
|
|
||||||
"meetingPoll": "Crea sondaggi di riunioni professionali con Rallly",
|
|
||||||
"meetingPollDescription": "I sondaggi di riunione sono un ottimo modo per avere la disponibilità delle persone. Rallly ti permette di creare bellissimi sondaggi di riunione con facilità.",
|
|
||||||
"meetingPollMetaTitle": "Sondaggio di Riunione",
|
|
||||||
"meetingPollMetaDescription": "Pianifica facilmente le riunioni con la nostra funzione di sondaggio, assicurando la disponibilità di tutte le persone.",
|
|
||||||
"quickCreateBlog": "Introduzione A Creazione Rapida"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,5 @@
|
||||||
"whenPollInactive": "Quando un sondaggio diventa inattivo?",
|
"whenPollInactive": "Quando un sondaggio diventa inattivo?",
|
||||||
"whenPollInactiveAnswer": "I sondaggi diventano inattivi quando tutte le opzioni di data sono nel passato E non si accede al sondaggio da oltre 30 giorni. I sondaggi inattivi vengono automaticamente eliminati se non hai un abbonamento a pagamento.",
|
"whenPollInactiveAnswer": "I sondaggi diventano inattivi quando tutte le opzioni di data sono nel passato E non si accede al sondaggio da oltre 30 giorni. I sondaggi inattivi vengono automaticamente eliminati se non hai un abbonamento a pagamento.",
|
||||||
"yearlyBillingDescription": "all'anno",
|
"yearlyBillingDescription": "all'anno",
|
||||||
"annualBenefit": "{count} mesi gratis",
|
"annualBenefit": "{count} mesi gratis"
|
||||||
"pricingTitle": "Inizia gratis",
|
|
||||||
"pricingSubtitle": "Passa a un piano a pagamento per accedere alle funzionalità premium"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"recentPosts": "最近の投稿",
|
|
||||||
"blogTitle": "Rallly - ブログ",
|
|
||||||
"blogDescription": "Ralllyに関するニュース・アップデート・お知らせ。"
|
|
||||||
}
|
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"login": "ログイン",
|
|
||||||
"links": "リンク",
|
|
||||||
"blog": "ブログ",
|
|
||||||
"discussions": "ディスカッション",
|
|
||||||
"footerCredit": "Made by <a>@imlukevella</a>",
|
|
||||||
"footerSponsor": "このプロジェクトはユーザーの寄付で成り立っています。どうか<a>寄付</a>をご検討ください。",
|
|
||||||
"language": "言語",
|
|
||||||
"poweredBy": "Powered by",
|
|
||||||
"privacyPolicy": "プライバシーポリシー",
|
|
||||||
"support": "サポート",
|
|
||||||
"cookiePolicy": "Cookie のポリシー",
|
|
||||||
"termsOfUse": "利用規約",
|
|
||||||
"volunteerTranslator": "このサイトの翻訳に協力する",
|
|
||||||
"notFoundTitle": "404 not found",
|
|
||||||
"notFoundDescription": "お探しのページは見つかりませんでした。",
|
|
||||||
"goToHome": "ホームに戻る",
|
|
||||||
"goToApp": "アプリに移動",
|
|
||||||
"pricing": "料金",
|
|
||||||
"bestDoodleAlternative": "ベストなDoodleの代替",
|
|
||||||
"freeSchedulingPoll": "無料の日程調整",
|
|
||||||
"getStarted": "始める",
|
|
||||||
"availabilityPoll": "候補日アンケート",
|
|
||||||
"solutions": "ソリューション",
|
|
||||||
"howItWorks": "使い方",
|
|
||||||
"status": "ステータス",
|
|
||||||
"when2MeetAlternative": "When2Meetの代替",
|
|
||||||
"meetingPoll": "日程アンケート"
|
|
||||||
}
|
|
|
@ -1,41 +0,0 @@
|
||||||
{
|
|
||||||
"createPageLikeThis": "このようなページが数秒で作れます!",
|
|
||||||
"noLoginRequired": "ログイン不要",
|
|
||||||
"headline": "ムダなメールのやりとりをなくす",
|
|
||||||
"subheading": "効率的な日程調整で時間を節約",
|
|
||||||
"pcmagQuote": "「わずかな時間で日程調整を設定できる」",
|
|
||||||
"hubspotQuote": "「もっともシンプルな大規模グループ向けの日程調整方法」",
|
|
||||||
"goodfirmsQuote": "「シンプルで、連絡にかかる時間を最小限にできる」",
|
|
||||||
"popsciQuote": "「\"お返事ください\"の手間を省きたいなら完璧な選択だ」",
|
|
||||||
"ericQuote": "「まだメールでスケジューリングしているなら、Ralllyの使用を強く薦める。日程調整を簡単にできるので、より整理されストレスの少ない業務時間を過ごせるだろう。」",
|
|
||||||
"viaTrustpilot": "Trustpilotより",
|
|
||||||
"ericJobTitle": "MIT のエグゼクティブ・アシスタント",
|
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ 登録ユーザー",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ アンケート作成数",
|
|
||||||
"statsLanguagesSupported": "10以上の言語に対応",
|
|
||||||
"hint": "無料です!ログインは必要ありません。",
|
|
||||||
"doodleAlternative": "最高の無料Doodle代替",
|
|
||||||
"doodleAlternativeDescription": "Ralllyは皆が求めていたDoodleの代替ツールです。何千人ものユーザーがすでに切り替えており、直感的で使いやすいインターフェースで広告に煩わされることなく日程調整を行っています。 ",
|
|
||||||
"availabilityPollCta": "候補日アンケートを作成",
|
|
||||||
"availabilityPollMetaTitle": "日程調整|Ralllyで合理的なスケジューリング",
|
|
||||||
"availabilityPollMetaDescription": "Rallly の候補日アンケートで、シームレスにミーティングやイベントをスケジュールしましょう。スムーズで効率的なプランニングで、全員の予定を調整できます。",
|
|
||||||
"availabilityPollTitle": "候補日アンケート",
|
|
||||||
"availabilityPollDescription": "ミーティングの参加者全員の都合を合わせるのに苦労していませんか?イベントや会議の計画を簡潔にするために設計された強力なツールで、スケジューリングを合理化しましょう。",
|
|
||||||
"createAPoll": "会議アンケートを作成",
|
|
||||||
"doodleAlternativeMetaTitle": "最高の無料Doodle代替 | Rallly",
|
|
||||||
"doodleAlternativeMetaDescription": "Doodleの代替を探していますか?Ralllyをお試しください!無料で、使いやすく、アカウントを必要としません。",
|
|
||||||
"createASchedulingPoll": "日程アンケートを作成",
|
|
||||||
"freeSchedulingPollMetaDescription": "無料の日程アンケートを数秒で作成します。会議、イベント、カンファレンス、スポーツチームなどの取りまとめに最適です。",
|
|
||||||
"freeSchedulingPollDescription": "Ralllyで美しく使いやすい日程アンケートを作成し、次のイベントのベストな予定日を見つけましょう。",
|
|
||||||
"new": "New",
|
|
||||||
"metaTitle": "Rallly: グループスケジューリングツール",
|
|
||||||
"metaDescription": "Ralllyは、最も早くて簡単なスケジューリングとコラボレーションのツールです。ログイン不要、わずかな時間でミーティングのアンケートを作成できます。",
|
|
||||||
"when2meetAlternativeMetaTitle": "ベストなWhen2Meetの代替: Rallly",
|
|
||||||
"when2meetAlternativeMetaDescription": "最高の無料When2Meet代替、Ralllyはスケジューリングのより良い方法を提供します。使いやすく、無料です。",
|
|
||||||
"when2meetAlternative": "まだWhen2Meetを使っていますか?",
|
|
||||||
"when2meetAlternativeDescription": "Ralllyを使って、プロの候補日アンケートを作成しましょう。広告表示はなく、無料です。",
|
|
||||||
"meetingPoll": "Ralllyでプロの日程調整を作成",
|
|
||||||
"meetingPollDescription": "候補日アンケートは、みんなの都合を合わせるのに適した方法です。Ralllyで美しい候補日アンケートを簡単に作成できます。",
|
|
||||||
"meetingPollMetaTitle": "日程調整",
|
|
||||||
"meetingPollMetaDescription": "アンケート機能を使って簡単にミーティングを計画し、誰でも利用できるようにします。"
|
|
||||||
}
|
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"pricingDescription": "無料で始めましょう。ログインは必要ありません。",
|
|
||||||
"freeForever": "永久に無料",
|
|
||||||
"planPro": "Pro",
|
|
||||||
"monthlyBillingDescription": "/月",
|
|
||||||
"upgrade": "アップグレード",
|
|
||||||
"faq": "よく寄せられる質問",
|
|
||||||
"canUseFree": "Ralllyは無料で利用できますか?",
|
|
||||||
"whyUpgrade": "アップグレードする理由は?",
|
|
||||||
"howToUpgrade": "有料プランにアップグレードするには?",
|
|
||||||
"howToUpgradeAnswer": "アップグレードするには、 <a>課金設定</a> に移動し、 <b>アップグレード</b>をクリックします。",
|
|
||||||
"cancelSubscription": "サブスクリプションを解約するにはどうすればいいですか?",
|
|
||||||
"cancelSubscriptionAnswer": "<a>課金設定</a>からいつでもサブスクリプションをキャンセルできます。サブスクリプションをキャンセルしても、請求期間が終わるまでは有料プランにアクセスできます。 その後、無料プランにダウングレードされます。",
|
|
||||||
"billingPeriodMonthly": "月払い",
|
|
||||||
"billingPeriodYearly": "年払い",
|
|
||||||
"planFreeDescription": "カジュアルユーザー向け",
|
|
||||||
"limitedAccess": "コアな機能へのアクセス",
|
|
||||||
"pollsDeleted": "アンケートは非アクティブになると自動的に削除されます",
|
|
||||||
"planProDescription": "パワーユーザーとプロフェッショナル向け",
|
|
||||||
"accessAllFeatures": "すべての機能にアクセス",
|
|
||||||
"getEarlyAccess": "新機能への早期アクセス",
|
|
||||||
"canUseFreeAnswer2": "はい。Ralllyの機能のほとんどは無料で、多くのユーザーは支払う必要はありません。ただし、課金ユーザーのみ利用可能な機能もいくつかあります。これらの機能はRalllyを最大限活用するために設計されています。",
|
|
||||||
"whyUpgradeAnswer2": "Ralllyの使用頻度が高い方や仕事に使用している方には、有料プランへのアップグレードがおすすめです。現在のサブスクリプションレートはアーリーアダプターのための特別な値であり、将来は増額する予定です。今すぐアップグレードすることで、新しい高品質なスケジューリングツールに早期アクセスできます。また、サブスクリプションレートは固定され、将来の価格上昇に影響されません。",
|
|
||||||
"upgradeNowSaveLater": "今すぐアップグレードし、あとで保存",
|
|
||||||
"earlyAdopterDescription": "アーリーアダプターであれば、サブスクリプション料金が固定され、将来の価格上昇の影響を受けなくなります。",
|
|
||||||
"planFree": "無料",
|
|
||||||
"keepPollsIndefinitely": "無期限にアンケートを保持",
|
|
||||||
"whenPollInactive": "アンケートはいつ非アクティブになりますか?",
|
|
||||||
"whenPollInactiveAnswer": "すべての候補日が過去の日程であり、かつ、アンケートへのアクセスが30日ない場合、アンケートは無効化されます。有料サブスクリプションを契約していない場合、無効化されたアンケートは自動的に削除されます。",
|
|
||||||
"yearlyBillingDescription": "/年",
|
|
||||||
"annualBenefit": "{count} ヶ月無料",
|
|
||||||
"pricingTitle": "無料で始める",
|
|
||||||
"pricingSubtitle": "プレミアム機能を利用するには有料プランにアップグレードしてください"
|
|
||||||
}
|
|
|
@ -23,7 +23,5 @@
|
||||||
"availabilityPoll": "가능한 시간 투표",
|
"availabilityPoll": "가능한 시간 투표",
|
||||||
"solutions": "해결책",
|
"solutions": "해결책",
|
||||||
"howItWorks": "이용 방법",
|
"howItWorks": "이용 방법",
|
||||||
"status": "상태",
|
"status": "상태"
|
||||||
"when2MeetAlternative": "When2Meet 대안",
|
|
||||||
"meetingPoll": "미팅 투표"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
"ericQuote": "\"일정 작업이 이메일 안에 있다면, Rallly를 사용하여 더 조직적이고 스트레스가 덜한 근무일을 위해 작업을 간소화할 것을 강력히 권장합니다.\"",
|
"ericQuote": "\"일정 작업이 이메일 안에 있다면, Rallly를 사용하여 더 조직적이고 스트레스가 덜한 근무일을 위해 작업을 간소화할 것을 강력히 권장합니다.\"",
|
||||||
"viaTrustpilot": "Trustpilot을 통해",
|
"viaTrustpilot": "Trustpilot을 통해",
|
||||||
"ericJobTitle": "MIT의 전무 비서",
|
"ericJobTitle": "MIT의 전무 비서",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ 등록된 사용자",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+개의 투표가 생성되었습니다.",
|
|
||||||
"statsLanguagesSupported": "지원되는 언어 10개 이상",
|
"statsLanguagesSupported": "지원되는 언어 10개 이상",
|
||||||
"hint": "무료입니다! 로그인할 필요가 없습니다.",
|
"hint": "무료입니다! 로그인할 필요가 없습니다.",
|
||||||
"doodleAlternative": "최고의 무료 Doodle 대안",
|
"doodleAlternative": "최고의 무료 Doodle 대안",
|
||||||
|
@ -25,19 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "최고의 무료 Doodle 대안 | Rallly",
|
"doodleAlternativeMetaTitle": "최고의 무료 Doodle 대안 | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Doodle 대안을 찾고 계신가요? Rallly를 사용해보세요! 무료이며 사용하기 간편하고, 계정이 필요하지 않습니다.",
|
"doodleAlternativeMetaDescription": "Doodle 대안을 찾고 계신가요? Rallly를 사용해보세요! 무료이며 사용하기 간편하고, 계정이 필요하지 않습니다.",
|
||||||
"createASchedulingPoll": "일정 투표 만들기",
|
"createASchedulingPoll": "일정 투표 만들기",
|
||||||
"freeSchedulingPollMetaTitle": "무료 일정 투표를 즉시 생성하세요 | 계정 필요 없음",
|
"freeSchedulingPollMetaTitle": "무료 일정 투표 | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "몇 초 안에 무료 일정 투표를 만드세요. 회의, 이벤트, 컨퍼런스, 스포츠 팀 등을 조직하는 데 적합합니다.",
|
"freeSchedulingPollMetaDescription": "몇 초 안에 무료 일정 투표를 만드세요. 회의, 이벤트, 컨퍼런스, 스포츠 팀 등을 조직하는 데 적합합니다.",
|
||||||
"freeSchedulingPollTitle": "다음 이벤트 날짜를 찾으세요",
|
"freeSchedulingPollTitle": "무료 일정 투표를 찾고 계신가요?",
|
||||||
"freeSchedulingPollDescription": "Rallly를 사용하면 아름답고 사용하기 쉬운 일정 투표를 만들어 다음 이벤트에 딱 맞는 시간을 찾을 수 있습니다.",
|
"freeSchedulingPollDescription": "Rallly를 사용하면 아름답고 사용하기 쉬운 일정 투표를 만들어 다음 이벤트에 딱 맞는 시간을 찾을 수 있습니다.",
|
||||||
"new": "신규",
|
"new": "신규",
|
||||||
"metaTitle": "Rallly: 그룹 일정 도구",
|
"metaTitle": "Rallly: 그룹 일정 도구",
|
||||||
"metaDescription": "최적의 시간이나 날짜를 찾기 위해 투표를 생성하세요. Doodle의 무료 대체제입니다.",
|
"metaDescription": "최적의 시간이나 날짜를 찾기 위해 투표를 생성하세요. Doodle의 무료 대체제입니다.",
|
||||||
"when2meetAlternativeMetaTitle": "최고의 When2Meet 대안: Rallly",
|
"selfHostingBlog": "Rallly 3.0 자체 호스팅"
|
||||||
"when2meetAlternativeMetaDescription": "When2Meet의 최고 무료 대안인 Rallly로 회의 일정을 잡는 더 나은 방법을 찾으세요. 사용하기 쉽고 무료입니다.",
|
|
||||||
"when2meetAlternative": "아직도 When2Meet을 사용하시나요?",
|
|
||||||
"when2meetAlternativeDescription": "Rallly를 사용하여 전문적이고 광고 없는 회의 참석 투표를 무료로 만들어 보세요.",
|
|
||||||
"meetingPoll": "Rallly로 전문적인 회의 참석 투표를 만들어보세요",
|
|
||||||
"meetingPollDescription": "회의 참석 투표는 사람들의 참석 가능 여부를 파악하는 좋은 방법입니다. Rallly를 사용하면 손쉽게 아름다운 회의 참석 투표를 만들 수 있습니다.",
|
|
||||||
"meetingPollMetaTitle": "회의 참석 투표",
|
|
||||||
"meetingPollMetaDescription": "여론조사 기능을 이용해 회의 일정을 쉽게 조정하고 모든 사람의 참석 가능 여부를 확인하세요."
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,5 @@
|
||||||
"whenPollInactive": "설문조사가 언제 비활성 상태가 되나요?",
|
"whenPollInactive": "설문조사가 언제 비활성 상태가 되나요?",
|
||||||
"whenPollInactiveAnswer": "모든 날짜 옵션이 과거에 있으며 설문조사가 30일 이상 액세스되지 않으면 설문조사는 비활성 상태가 됩니다. 유료 구독이 없는 경우 비활성 설문조사는 자동으로 삭제됩니다.",
|
"whenPollInactiveAnswer": "모든 날짜 옵션이 과거에 있으며 설문조사가 30일 이상 액세스되지 않으면 설문조사는 비활성 상태가 됩니다. 유료 구독이 없는 경우 비활성 설문조사는 자동으로 삭제됩니다.",
|
||||||
"yearlyBillingDescription": "연간",
|
"yearlyBillingDescription": "연간",
|
||||||
"annualBenefit": "{count}개월 무료",
|
"annualBenefit": "{count}개월 무료"
|
||||||
"pricingTitle": "무료로 시작하세요",
|
|
||||||
"pricingSubtitle": "프리미엄 기능에 액세스하려면 유료 요금제로 업그레이드하세요"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 niet gevonden",
|
"notFoundTitle": "404 niet gevonden",
|
||||||
"notFoundDescription": "We konden de pagina die je zoekt niet vinden.",
|
"notFoundDescription": "We konden de pagina die je zoekt niet vinden.",
|
||||||
"goToHome": "Ga naar Home",
|
"goToHome": "Ga naar Home",
|
||||||
|
"goToApp": "Ga naar de app",
|
||||||
"pricing": "Prijzen",
|
"pricing": "Prijzen",
|
||||||
"bestDoodleAlternative": "Beste Doodle Alternatief",
|
"bestDoodleAlternative": "Beste Doodle Alternatief",
|
||||||
"freeSchedulingPoll": "Gratis Planning Poll",
|
"freeSchedulingPoll": "Gratis Planning Poll",
|
||||||
|
@ -24,6 +25,5 @@
|
||||||
"howItWorks": "Hoe het werkt",
|
"howItWorks": "Hoe het werkt",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
"when2MeetAlternative": "Alternatief voor When2Meet",
|
"when2MeetAlternative": "Alternatief voor When2Meet",
|
||||||
"meetingPoll": "Poll voor vergadering",
|
"meetingPoll": "Poll voor vergadering"
|
||||||
"signUp": "Aanmelden"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Maak een pagina zoals deze in seconden!",
|
"createPageLikeThis": "Maak een pagina zoals deze in seconden!",
|
||||||
"noLoginRequired": "Inloggen is niet vereist",
|
"noLoginRequired": "Inloggen is niet vereist",
|
||||||
"headline": "Vind de beste tijd om elkaar te ontmoeten",
|
"headline": "Ditch de heen-en-weer e-mails",
|
||||||
"subheading": "Coördineer groepsbijeenkomsten zonder al die e-mails heen en weer",
|
"subheading": "Stroomlijn je planningsproces en bespaar tijd",
|
||||||
"pcmagQuote": "“Maak in enkele ogenblikken een plannings poll op.\"",
|
"pcmagQuote": "“Maak in enkele ogenblikken een plannings poll op.\"",
|
||||||
"hubspotQuote": "De eenvoudigste keuze voor beschikbaarheid van grote groepen.\"",
|
"hubspotQuote": "De eenvoudigste keuze voor beschikbaarheid van grote groepen.\"",
|
||||||
"goodfirmsQuote": "“Uniek in zijn eenvoud en met minimale interactietijd.\"",
|
"goodfirmsQuote": "“Uniek in zijn eenvoud en met minimale interactietijd.\"",
|
||||||
|
@ -25,13 +25,14 @@
|
||||||
"doodleAlternativeMetaTitle": "Beste Gratis Doodle Alternatief | Rallly",
|
"doodleAlternativeMetaTitle": "Beste Gratis Doodle Alternatief | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Op zoek naar een Doodle alternatief? Probeer Rallly! Het is gratis, gebruiksvriendelijk, en je hebt geen account nodig.",
|
"doodleAlternativeMetaDescription": "Op zoek naar een Doodle alternatief? Probeer Rallly! Het is gratis, gebruiksvriendelijk, en je hebt geen account nodig.",
|
||||||
"createASchedulingPoll": "Maak een Planning Poll",
|
"createASchedulingPoll": "Maak een Planning Poll",
|
||||||
"freeSchedulingPollMetaTitle": "Maak direct een gratis poll aan | Geen account vereist",
|
"freeSchedulingPollMetaTitle": "Gratis Planning Poll | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Creëer een gratis planning poll in seconden. Ideaal voor het organiseren van vergaderingen, evenementen, conferenties, sportteams en meer.",
|
"freeSchedulingPollMetaDescription": "Creëer een gratis planning poll in seconden. Ideaal voor het organiseren van vergaderingen, evenementen, conferenties, sportteams en meer.",
|
||||||
"freeSchedulingPollTitle": "Vind een datum voor je volgende evenement",
|
"freeSchedulingPollTitle": "Op zoek naar een gratis planning poll?",
|
||||||
"freeSchedulingPollDescription": "Rallly laat je mooie en eenvoudige planningspolls maken, zodat je de beste tijd vindt voor je volgende evenement.",
|
"freeSchedulingPollDescription": "Rallly laat je mooie en eenvoudige planning polls maken, zodat je de beste tijd vindt voor je volgende evenement.",
|
||||||
"new": "Nieuw",
|
"new": "Nieuw",
|
||||||
"metaTitle": "Rallly - Plan Groep Meetings",
|
"metaTitle": "Rallly - Plan Groep Meetings",
|
||||||
"metaDescription": "Rallly is de snelste en eenvoudigste tool voor planning en samenwerking. Maak binnen enkele seconden vergaderpolls aan, inloggen is niet nodig.",
|
"metaDescription": "Rallly is de snelste en eenvoudigste tool voor planning en samenwerking. Maak binnen enkele seconden vergaderpolls aan, inloggen is niet nodig.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 Self-Hosting",
|
||||||
"when2meetAlternativeMetaTitle": "Het beste alternatief voor When2Meet: Rallly",
|
"when2meetAlternativeMetaTitle": "Het beste alternatief voor When2Meet: Rallly",
|
||||||
"when2meetAlternativeMetaDescription": "Vind een betere manier om vergaderingen in te plannen met Rallly, het beste alternatief voor When2Meet. Makkelijk te gebruiken en gratis.",
|
"when2meetAlternativeMetaDescription": "Vind een betere manier om vergaderingen in te plannen met Rallly, het beste alternatief voor When2Meet. Makkelijk te gebruiken en gratis.",
|
||||||
"when2meetAlternative": "Gebruik je nog steeds When2Meet?",
|
"when2meetAlternative": "Gebruik je nog steeds When2Meet?",
|
||||||
|
@ -39,6 +40,5 @@
|
||||||
"meetingPoll": "Maak professionele polls voor vergaderingen met Rallly",
|
"meetingPoll": "Maak professionele polls voor vergaderingen met Rallly",
|
||||||
"meetingPollDescription": "Polls voor vergaderingen zijn een geweldige manier om de beschikbaarheid van mensen te krijgen. Met Rallly kun je heel eenvoudig prachtige polls voor vergaderingen maken.",
|
"meetingPollDescription": "Polls voor vergaderingen zijn een geweldige manier om de beschikbaarheid van mensen te krijgen. Met Rallly kun je heel eenvoudig prachtige polls voor vergaderingen maken.",
|
||||||
"meetingPollMetaTitle": "Poll voor vergadering",
|
"meetingPollMetaTitle": "Poll voor vergadering",
|
||||||
"meetingPollMetaDescription": "Plan eenvoudig vergaderingen met onze poll-functie, zodat je zeker weet dat iedereen beschikbaar is.",
|
"meetingPollMetaDescription": "Plan eenvoudig vergaderingen met onze poll-functie, zodat je zeker weet dat iedereen beschikbaar is."
|
||||||
"quickCreateBlog": "Introductie Snel Beginnen"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404: Ikke funnet",
|
"notFoundTitle": "404: Ikke funnet",
|
||||||
"notFoundDescription": "Vi finner ikke siden du leter etter.",
|
"notFoundDescription": "Vi finner ikke siden du leter etter.",
|
||||||
"goToHome": "Gå til startsiden",
|
"goToHome": "Gå til startsiden",
|
||||||
|
"goToApp": "Gå til appen",
|
||||||
"pricing": "Priser",
|
"pricing": "Priser",
|
||||||
"bestDoodleAlternative": "Det beste Doodle-alternativet",
|
"bestDoodleAlternative": "Det beste Doodle-alternativet",
|
||||||
"freeSchedulingPoll": "Gratis planleggingsavstemning",
|
"freeSchedulingPoll": "Gratis planleggingsavstemning",
|
||||||
|
@ -22,6 +23,5 @@
|
||||||
"availabilityPoll": "Tilgjengelighetsavstemning",
|
"availabilityPoll": "Tilgjengelighetsavstemning",
|
||||||
"solutions": "Løsninger",
|
"solutions": "Løsninger",
|
||||||
"howItWorks": "Slik fungerer det",
|
"howItWorks": "Slik fungerer det",
|
||||||
"status": "Status",
|
"status": "Status"
|
||||||
"when2MeetAlternative": "Alternativ til When2Meet"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Lag en side som denne, på sekunder!",
|
"createPageLikeThis": "Lag en side som denne, på sekunder!",
|
||||||
"noLoginRequired": "Innlogging kreves ikke",
|
"noLoginRequired": "Innlogging kreves ikke",
|
||||||
|
"headline": "Legg lange e-postsamtaler bak deg",
|
||||||
|
"subheading": "Forenkle planleggingsprosessen din og spar tid",
|
||||||
"pcmagQuote": "“Konfigurer en planleggingsavstemning på så lite tid som mulig.”",
|
"pcmagQuote": "“Konfigurer en planleggingsavstemning på så lite tid som mulig.”",
|
||||||
"hubspotQuote": "“Det enkleste valget for tilgjengelighetsavstemning for store grupper.”",
|
"hubspotQuote": "“Det enkleste valget for tilgjengelighetsavstemning for store grupper.”",
|
||||||
"goodfirmsQuote": "“Unik i sin enkelhet og krever minimal interaksjonstid.”",
|
"goodfirmsQuote": "“Unik i sin enkelhet og krever minimal interaksjonstid.”",
|
||||||
|
@ -8,8 +10,6 @@
|
||||||
"ericQuote": "“Hvis planleggingsarbeidet ditt foregår via e-post, oppfordrer jeg deg sterkt til å forsøke å la Rallly forenkle planleggingsoppgavene dine for en mer organisert og mindre stressfylt arbeidsdag.”",
|
"ericQuote": "“Hvis planleggingsarbeidet ditt foregår via e-post, oppfordrer jeg deg sterkt til å forsøke å la Rallly forenkle planleggingsoppgavene dine for en mer organisert og mindre stressfylt arbeidsdag.”",
|
||||||
"viaTrustpilot": "via Trustpilot",
|
"viaTrustpilot": "via Trustpilot",
|
||||||
"ericJobTitle": "Utøvende assistent ved MIT",
|
"ericJobTitle": "Utøvende assistent ved MIT",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ registrerte brukere",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ avstemninger opprettet",
|
|
||||||
"statsLanguagesSupported": "Over 10 støttede språk",
|
"statsLanguagesSupported": "Over 10 støttede språk",
|
||||||
"hint": "Det er gratis! Innlogging kreves ikke.",
|
"hint": "Det er gratis! Innlogging kreves ikke.",
|
||||||
"doodleAlternative": "Det beste gratis Doodle-alternativet",
|
"doodleAlternative": "Det beste gratis Doodle-alternativet",
|
||||||
|
@ -23,12 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Det beste gratis Doodle-alternativet | Rallly",
|
"doodleAlternativeMetaTitle": "Det beste gratis Doodle-alternativet | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Ser du etter et Doodle-alternativ? Prøv Rallly! Det er gratis, enkelt å bruke og krever ingen innlogging.",
|
"doodleAlternativeMetaDescription": "Ser du etter et Doodle-alternativ? Prøv Rallly! Det er gratis, enkelt å bruke og krever ingen innlogging.",
|
||||||
"createASchedulingPoll": "Opprett en planleggingsavstemning",
|
"createASchedulingPoll": "Opprett en planleggingsavstemning",
|
||||||
|
"freeSchedulingPollMetaTitle": "Gratis planleggingsavstemning | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Opprett en gratis planleggingsavstemning på sekunder. Ideelt for å organisere møter, arrangementer, konferanser, idrettslag og mer.",
|
"freeSchedulingPollMetaDescription": "Opprett en gratis planleggingsavstemning på sekunder. Ideelt for å organisere møter, arrangementer, konferanser, idrettslag og mer.",
|
||||||
|
"freeSchedulingPollTitle": "Ser du etter en gratis planleggingsavstemning?",
|
||||||
"freeSchedulingPollDescription": "Rallly lar deg opprette fine planleggingsavstemninger som er enkle å bruke, slik at du kan finne frem til det beste tidspunktet for ditt neste arrangement.",
|
"freeSchedulingPollDescription": "Rallly lar deg opprette fine planleggingsavstemninger som er enkle å bruke, slik at du kan finne frem til det beste tidspunktet for ditt neste arrangement.",
|
||||||
"new": "Nytt",
|
"new": "Nytt",
|
||||||
"metaTitle": "Rallly - Planlegg gruppemøter",
|
"metaTitle": "Rallly - Planlegg gruppemøter",
|
||||||
"metaDescription": "Opprett avstemninger og stem for å finne den beste dagen eller tidspunktet. Et gratis Doodle-alternativ.",
|
"metaDescription": "Opprett avstemninger og stem for å finne den beste dagen eller tidspunktet. Et gratis Doodle-alternativ.",
|
||||||
"when2meetAlternativeMetaTitle": "Det beste alternativet til When2Meet: Rallly",
|
"selfHostingBlog": "Rallly 3.0 på egen infrastruktur"
|
||||||
"when2meetAlternativeMetaDescription": "Finn en bedre måte å planlegge møter på med Rallly, det beste gratisalternativet til When2Meet. Lettvint å bruke og gratis.",
|
|
||||||
"when2meetAlternative": "Bruker du fremdeles When2Meet?"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,5 @@
|
||||||
"whenPollInactive": "Når blir en avstemning inaktiv?",
|
"whenPollInactive": "Når blir en avstemning inaktiv?",
|
||||||
"whenPollInactiveAnswer": "Avstemninger blir inaktive når alle datovalgene ligger i fortiden OG avstemningen ikke har blitt åpnet på over 30 dager. Inaktive avstemninger slettes automatisk hvis du ikke har et betalt abonnement.",
|
"whenPollInactiveAnswer": "Avstemninger blir inaktive når alle datovalgene ligger i fortiden OG avstemningen ikke har blitt åpnet på over 30 dager. Inaktive avstemninger slettes automatisk hvis du ikke har et betalt abonnement.",
|
||||||
"yearlyBillingDescription": "per år",
|
"yearlyBillingDescription": "per år",
|
||||||
"annualBenefit": "{count} måneder gratis",
|
"annualBenefit": "{count} måneder gratis"
|
||||||
"pricingTitle": "Kom i gang gratis",
|
|
||||||
"pricingSubtitle": "Oppgrader til en betalt plan for å få tilgang til premiumfunksjoner"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "Błąd 404 - nie znaleziono strony",
|
"notFoundTitle": "Błąd 404 - nie znaleziono strony",
|
||||||
"notFoundDescription": "Nie mogliśmy znaleźć strony, której szukasz.",
|
"notFoundDescription": "Nie mogliśmy znaleźć strony, której szukasz.",
|
||||||
"goToHome": "Przejdź do strony głównej",
|
"goToHome": "Przejdź do strony głównej",
|
||||||
|
"goToApp": "Przejdź do aplikacji",
|
||||||
"pricing": "Cennik",
|
"pricing": "Cennik",
|
||||||
"bestDoodleAlternative": "Najlepsza alternatywa dla Doodle",
|
"bestDoodleAlternative": "Najlepsza alternatywa dla Doodle",
|
||||||
"freeSchedulingPoll": "Bezpłatna ankieta dotycząca harmonogramu",
|
"freeSchedulingPoll": "Bezpłatna ankieta dotycząca harmonogramu",
|
||||||
|
@ -22,7 +23,5 @@
|
||||||
"availabilityPoll": "Ankieta dostępności",
|
"availabilityPoll": "Ankieta dostępności",
|
||||||
"solutions": "Rozwiązania",
|
"solutions": "Rozwiązania",
|
||||||
"howItWorks": "Jak to działa",
|
"howItWorks": "Jak to działa",
|
||||||
"status": "Status",
|
"status": "Status"
|
||||||
"when2MeetAlternative": "When2Meet — alternatywa",
|
|
||||||
"meetingPoll": "Ankieta dotycząca spotkania"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Stwórz stronę taką jak ta w kilka sekund!",
|
"createPageLikeThis": "Stwórz stronę taką jak ta w kilka sekund!",
|
||||||
"noLoginRequired": "Nie wymaga logowania",
|
"noLoginRequired": "Nie wymaga logowania",
|
||||||
|
"headline": "Zrezygnuj z e-maili zwrotnych",
|
||||||
|
"subheading": "Zoptymalizuj proces planowania i oszczędzaj czas",
|
||||||
"pcmagQuote": "\"Skonfiguruj ankietę planowania w jak najkrótszym czasie.\"",
|
"pcmagQuote": "\"Skonfiguruj ankietę planowania w jak najkrótszym czasie.\"",
|
||||||
"hubspotQuote": "\"Najprostszy wybór do badania dostępności dla dużych grup.\"",
|
"hubspotQuote": "\"Najprostszy wybór do badania dostępności dla dużych grup.\"",
|
||||||
"goodfirmsQuote": "\"Wyjątkowy w swojej prostocie i wymagający minimalnego czasu interakcji.\"",
|
"goodfirmsQuote": "\"Wyjątkowy w swojej prostocie i wymagający minimalnego czasu interakcji.\"",
|
||||||
|
@ -8,8 +10,6 @@
|
||||||
"ericQuote": "\"Jeśli Twój harmonogram pracy opiera się na wiadomościach e-mail, zdecydowanie zachęcam do wypróbowania Rallly i uproszczenia zadań związanych z planowaniem, aby uzyskać bardziej zorganizowany i mniej stresujący dzień pracy.\"",
|
"ericQuote": "\"Jeśli Twój harmonogram pracy opiera się na wiadomościach e-mail, zdecydowanie zachęcam do wypróbowania Rallly i uproszczenia zadań związanych z planowaniem, aby uzyskać bardziej zorganizowany i mniej stresujący dzień pracy.\"",
|
||||||
"viaTrustpilot": "via Trustpilot",
|
"viaTrustpilot": "via Trustpilot",
|
||||||
"ericJobTitle": "Asystent wykonawczy w MIT",
|
"ericJobTitle": "Asystent wykonawczy w MIT",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ zarejestrowani użytkownicy",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ ankiety utworzone",
|
|
||||||
"statsLanguagesSupported": "Ponad 10 obsługiwanych języków",
|
"statsLanguagesSupported": "Ponad 10 obsługiwanych języków",
|
||||||
"hint": "To nic nie kosztuje! Nie wymaga logowania.",
|
"hint": "To nic nie kosztuje! Nie wymaga logowania.",
|
||||||
"doodleAlternative": "Najlepsza darmowa alternatywa dla Doodle",
|
"doodleAlternative": "Najlepsza darmowa alternatywa dla Doodle",
|
||||||
|
@ -23,19 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Najlepsza darmowa alternatywa dla Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Najlepsza darmowa alternatywa dla Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Szukasz alternatywy dla Doodle? Wypróbuj Rallly! Jest darmowa, łatwa w użyciu i nie wymaga zakładania konta.",
|
"doodleAlternativeMetaDescription": "Szukasz alternatywy dla Doodle? Wypróbuj Rallly! Jest darmowa, łatwa w użyciu i nie wymaga zakładania konta.",
|
||||||
"createASchedulingPoll": "Utwórz ankietę planowania",
|
"createASchedulingPoll": "Utwórz ankietę planowania",
|
||||||
"freeSchedulingPollMetaTitle": "Utwórz bezpłatną ankietę do planowania natychmiastowo | Bez potrzeby zakładania konta",
|
"freeSchedulingPollMetaTitle": "Bezpłatna ankieta planowania | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Utwórz bezpłatną ankietę spotkania w kilka sekund. Idealny do organizowania spotkań, wydarzeń, konferencji, drużyn sportowych i nie tylko.",
|
"freeSchedulingPollMetaDescription": "Utwórz bezpłatną ankietę spotkania w kilka sekund. Idealny do organizowania spotkań, wydarzeń, konferencji, drużyn sportowych i nie tylko.",
|
||||||
"freeSchedulingPollTitle": "Znajdź datę swojego następnego wydarzenia",
|
"freeSchedulingPollTitle": "Szukasz bezpłatnej ankiety dotyczącej planowania?",
|
||||||
"freeSchedulingPollDescription": "Rallly pozwala tworzyć piękne i łatwe w użyciu ankiety do planowania, dzięki czemu można znaleźć najlepszy czas na następne wydarzenie.",
|
"freeSchedulingPollDescription": "Rallly pozwala tworzyć piękne i łatwe w użyciu ankiety do planowania, dzięki czemu można znaleźć najlepszy czas na następne wydarzenie.",
|
||||||
"new": "Nowość",
|
"new": "Nowość",
|
||||||
"metaTitle": "Rallly - Zaplanuj spotkania grupowe",
|
"metaTitle": "Rallly - Zaplanuj spotkania grupowe",
|
||||||
"metaDescription": "Twórz ankiety i głosuj, aby znaleźć najlepszy dzień lub godzinę. Bezpłatna alternatywa dla Doodle.",
|
"metaDescription": "Twórz ankiety i głosuj, aby znaleźć najlepszy dzień lub godzinę. Bezpłatna alternatywa dla Doodle.",
|
||||||
"when2meetAlternativeMetaTitle": "Najlepsza alternatywa dla When2Meet: Rallly",
|
"selfHostingBlog": "Rallly 3.0 - Samodzielne hostowanie"
|
||||||
"when2meetAlternativeMetaDescription": "Znajdź lepszy sposób na planowanie spotkań z Rallly, najlepszą darmową alternatywą dla When2Meet. Łatwa w użyciu i darmowa.",
|
|
||||||
"when2meetAlternative": "Nadal używasz When2Meet?",
|
|
||||||
"when2meetAlternativeDescription": "Twórz profesjonalne, wolne od reklam ankiety na spotkania za darmo dzięki Rallly.",
|
|
||||||
"meetingPoll": "Twórz profesjonalne ankiety na spotkania z Rallly",
|
|
||||||
"meetingPollDescription": "Ankiety spotkań to świetny sposób na uzyskanie dostępności ludzi. Rallly pozwala z łatwością tworzyć piękne ankiety spotkań.",
|
|
||||||
"meetingPollMetaTitle": "Ankieta dotycząca spotkania",
|
|
||||||
"meetingPollMetaDescription": "Łatwo planuj spotkania dzięki naszej funkcji ankiet, zapewniając dostępność każdego uczestnika."
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,5 @@
|
||||||
"whenPollInactive": "Kiedy ankieta staje się nieaktywna?",
|
"whenPollInactive": "Kiedy ankieta staje się nieaktywna?",
|
||||||
"whenPollInactiveAnswer": "Ankiety stają się nieaktywne, gdy wszystkie opcje daty znajdują się w przeszłości ORAZ ankieta nie była używana przez ponad 30 dni. Nieaktywne ankiety są automatycznie usuwane, jeśli użytkownik nie posiada płatnej subskrypcji.",
|
"whenPollInactiveAnswer": "Ankiety stają się nieaktywne, gdy wszystkie opcje daty znajdują się w przeszłości ORAZ ankieta nie była używana przez ponad 30 dni. Nieaktywne ankiety są automatycznie usuwane, jeśli użytkownik nie posiada płatnej subskrypcji.",
|
||||||
"yearlyBillingDescription": "rocznie",
|
"yearlyBillingDescription": "rocznie",
|
||||||
"annualBenefit": "{count} miesiące gratis",
|
"annualBenefit": "{count} miesiące gratis"
|
||||||
"pricingTitle": "Zacznij za darmo",
|
|
||||||
"pricingSubtitle": "Przejdź na płatny plan, aby uzyskać dostęp do funkcji premium"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 Página não encontrada",
|
"notFoundTitle": "404 Página não encontrada",
|
||||||
"notFoundDescription": "Não conseguimos encontrar a página que você está procurando.",
|
"notFoundDescription": "Não conseguimos encontrar a página que você está procurando.",
|
||||||
"goToHome": "Ir para o início",
|
"goToHome": "Ir para o início",
|
||||||
|
"goToApp": "Ir para o App",
|
||||||
"pricing": "Preços",
|
"pricing": "Preços",
|
||||||
"bestDoodleAlternative": "Melhor alternativa ao Doodle",
|
"bestDoodleAlternative": "Melhor alternativa ao Doodle",
|
||||||
"freeSchedulingPoll": "Agendamento de Enquete Gratuito",
|
"freeSchedulingPoll": "Agendamento de Enquete Gratuito",
|
||||||
|
@ -24,6 +25,5 @@
|
||||||
"howItWorks": "Como Funciona",
|
"howItWorks": "Como Funciona",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
"when2MeetAlternative": "When2Meet Alternativo",
|
"when2MeetAlternative": "When2Meet Alternativo",
|
||||||
"meetingPoll": "Enquete de reunião",
|
"meetingPoll": "Enquete de reunião"
|
||||||
"signUp": "Criar conta"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Crie uma página como esta em segundos!",
|
"createPageLikeThis": "Crie uma página como esta em segundos!",
|
||||||
"noLoginRequired": "Não é necessário iniciar sessão",
|
"noLoginRequired": "Não é necessário iniciar sessão",
|
||||||
"headline": "Encontre a melhor hora para se reunir",
|
"headline": "Livre-se do vai e volta de emails",
|
||||||
"subheading": "Reuniões de grupos coordenadas sem troca de e-mails",
|
"subheading": "Agilize seu processo de agendamento e poupe tempo",
|
||||||
"pcmagQuote": "“Configure uma enquete agendada no menor tempo possível”",
|
"pcmagQuote": "“Configure uma enquete agendada no menor tempo possível”",
|
||||||
"hubspotQuote": "“A escolha mais simples para sondar a disponibilidade em grandes grupos.”",
|
"hubspotQuote": "“A escolha mais simples para sondar a disponibilidade em grandes grupos.”",
|
||||||
"goodfirmsQuote": "“Único na sua simplicidade e requer tempo mínimo de interação.”",
|
"goodfirmsQuote": "“Único na sua simplicidade e requer tempo mínimo de interação.”",
|
||||||
|
@ -25,13 +25,14 @@
|
||||||
"doodleAlternativeMetaTitle": "Melhor Alternativa Gratuita ao Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Melhor Alternativa Gratuita ao Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Procurando por uma alternativa ao Doodle? Experimente Rallly! É gratuito, fácil de usar e não requer uma conta.",
|
"doodleAlternativeMetaDescription": "Procurando por uma alternativa ao Doodle? Experimente Rallly! É gratuito, fácil de usar e não requer uma conta.",
|
||||||
"createASchedulingPoll": "Crie uma Enquete de Agendamento",
|
"createASchedulingPoll": "Crie uma Enquete de Agendamento",
|
||||||
"freeSchedulingPollMetaTitle": "Crie uma enquete de agendamento gratuitamente | Não é necessário conta",
|
"freeSchedulingPollMetaTitle": "Enquete de Agendamento Grátis | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Crie uma enquete de agendamento gratuita em segundos. Ideal para organizar reuniões, eventos, conferências, equipes esportivas e muito mais.",
|
"freeSchedulingPollMetaDescription": "Crie uma enquete de agendamento gratuita em segundos. Ideal para organizar reuniões, eventos, conferências, equipes esportivas e muito mais.",
|
||||||
"freeSchedulingPollTitle": "Encontre uma data para seu próximo evento",
|
"freeSchedulingPollTitle": "Procurando por uma enquete de agendamento gratuita?",
|
||||||
"freeSchedulingPollDescription": "Rallly te permite criar enquetes de agendamento bonitas e fáceis de usar para que você possa encontrar o melhor horário do seu próximo evento.",
|
"freeSchedulingPollDescription": "Rallly te permite criar enquetes de agendamento bonitas e fáceis de usar para que você possa encontrar o melhor horário do seu próximo evento.",
|
||||||
"new": "Novo",
|
"new": "Novo",
|
||||||
"metaTitle": "Rallly - Agende Reuniões de Grupo",
|
"metaTitle": "Rallly - Agende Reuniões de Grupo",
|
||||||
"metaDescription": "Rallly é a ferramenta de agendamento e colaboração mais rápida e fácil. Crie uma enquete de reunião em segundos, sem necessidade de login.",
|
"metaDescription": "Rallly é a ferramenta de agendamento e colaboração mais rápida e fácil. Crie uma enquete de reunião em segundos, sem necessidade de login.",
|
||||||
|
"selfHostingBlog": "Auto-Hospedagem de Rallly 3.0",
|
||||||
"when2meetAlternativeMetaTitle": "Melhor alternativa ao When2Meet: Rallly",
|
"when2meetAlternativeMetaTitle": "Melhor alternativa ao When2Meet: Rallly",
|
||||||
"when2meetAlternativeMetaDescription": "Ache uma maneira melhor de agendar reuniões com Rallly, a melhor alternativa gratuita para When2Meet. Fácil de usar e de graça.",
|
"when2meetAlternativeMetaDescription": "Ache uma maneira melhor de agendar reuniões com Rallly, a melhor alternativa gratuita para When2Meet. Fácil de usar e de graça.",
|
||||||
"when2meetAlternative": "Ainda usando When2Meet?",
|
"when2meetAlternative": "Ainda usando When2Meet?",
|
||||||
|
@ -39,6 +40,5 @@
|
||||||
"meetingPoll": "Crie enquetes de reunião profissionais com Rallly",
|
"meetingPoll": "Crie enquetes de reunião profissionais com Rallly",
|
||||||
"meetingPollDescription": "Enquetes de reunião são ótimas para conhecer a disponibilidade das pessoas. Rallly permite que você crie belas enquetes com facilidade.",
|
"meetingPollDescription": "Enquetes de reunião são ótimas para conhecer a disponibilidade das pessoas. Rallly permite que você crie belas enquetes com facilidade.",
|
||||||
"meetingPollMetaTitle": "Enquete de reunião",
|
"meetingPollMetaTitle": "Enquete de reunião",
|
||||||
"meetingPollMetaDescription": "Agende reuniões facilmente com o nosso recurso de enquete, garantindo a disponibilidade de todos.",
|
"meetingPollMetaDescription": "Agende reuniões facilmente com o nosso recurso de enquete, garantindo a disponibilidade de todos."
|
||||||
"quickCreateBlog": "Apresentando o Crie Rápido"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 Página não encontrada",
|
"notFoundTitle": "404 Página não encontrada",
|
||||||
"notFoundDescription": "Não conseguimos encontrar a página que procuras.",
|
"notFoundDescription": "Não conseguimos encontrar a página que procuras.",
|
||||||
"goToHome": "Ir para a página inicial",
|
"goToHome": "Ir para a página inicial",
|
||||||
|
"goToApp": "Ir para a aplicação",
|
||||||
"pricing": "Preço",
|
"pricing": "Preço",
|
||||||
"bestDoodleAlternative": "Melhor alternativa ao Doodle",
|
"bestDoodleAlternative": "Melhor alternativa ao Doodle",
|
||||||
"freeSchedulingPoll": "Sondagem de agendamento gratuita",
|
"freeSchedulingPoll": "Sondagem de agendamento gratuita",
|
||||||
|
@ -22,7 +23,5 @@
|
||||||
"availabilityPoll": "Sondagem de disponibilidade",
|
"availabilityPoll": "Sondagem de disponibilidade",
|
||||||
"solutions": "Soluções",
|
"solutions": "Soluções",
|
||||||
"howItWorks": "Como Funciona",
|
"howItWorks": "Como Funciona",
|
||||||
"status": "Status",
|
"status": "Status"
|
||||||
"when2MeetAlternative": "Alternativa When2Meet",
|
|
||||||
"meetingPoll": "Sondagem de reunião"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Crie uma página como esta em segundos!",
|
"createPageLikeThis": "Crie uma página como esta em segundos!",
|
||||||
"noLoginRequired": "Não é necessário iniciar sessão",
|
"noLoginRequired": "Não é necessário iniciar sessão",
|
||||||
|
"headline": "Acabe com os e-mails de ida e volta",
|
||||||
|
"subheading": "Otimize seu processo de agendamento e economize tempo",
|
||||||
"pcmagQuote": "“Monte uma sondagem de agendamento no menor tempo possível.”",
|
"pcmagQuote": "“Monte uma sondagem de agendamento no menor tempo possível.”",
|
||||||
"hubspotQuote": "“A escolha mais simples para sondagem de disponibilidade para grandes grupos.”",
|
"hubspotQuote": "“A escolha mais simples para sondagem de disponibilidade para grandes grupos.”",
|
||||||
"goodfirmsQuote": "“Único em sua simplicidade e exige o mínimo de tempo de interação.”",
|
"goodfirmsQuote": "“Único em sua simplicidade e exige o mínimo de tempo de interação.”",
|
||||||
|
@ -8,8 +10,6 @@
|
||||||
"ericQuote": "“Se seu fluxo de trabalho de agendamento vive em e-mails, eu recomendo que você experimente e deixe o Rallly simplificar suas tarefas de agendamento para um dia de trabalho mais organizado e menos estressante.”",
|
"ericQuote": "“Se seu fluxo de trabalho de agendamento vive em e-mails, eu recomendo que você experimente e deixe o Rallly simplificar suas tarefas de agendamento para um dia de trabalho mais organizado e menos estressante.”",
|
||||||
"viaTrustpilot": "via Trustpilot",
|
"viaTrustpilot": "via Trustpilot",
|
||||||
"ericJobTitle": "Assistente Executivo no MIT",
|
"ericJobTitle": "Assistente Executivo no MIT",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ utilizadores registados",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ sondagens criadas",
|
|
||||||
"statsLanguagesSupported": "Mais de 10 idiomas suportados",
|
"statsLanguagesSupported": "Mais de 10 idiomas suportados",
|
||||||
"hint": "É grátis! Não é necessário iniciar sessão.",
|
"hint": "É grátis! Não é necessário iniciar sessão.",
|
||||||
"doodleAlternative": "A Melhor Alternativa Gratuita ao Doodle",
|
"doodleAlternative": "A Melhor Alternativa Gratuita ao Doodle",
|
||||||
|
@ -23,20 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Melhor Alternativa Gratuita ao Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Melhor Alternativa Gratuita ao Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Procurando uma alternativa ao Doodle? Experimente o Rallly! É grátis, fácil de usar e não requer uma conta.",
|
"doodleAlternativeMetaDescription": "Procurando uma alternativa ao Doodle? Experimente o Rallly! É grátis, fácil de usar e não requer uma conta.",
|
||||||
"createASchedulingPoll": "Crie uma Sondagem de Agendamento",
|
"createASchedulingPoll": "Crie uma Sondagem de Agendamento",
|
||||||
"freeSchedulingPollMetaTitle": "Crie uma sondagem de agendamento gratuita instantaneamente | Não é necessária uma conta",
|
"freeSchedulingPollMetaTitle": "Sondagem de Agendamento Gratuita | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Crie uma sondagem de agendamento gratuita em segundos. Ideal para organizar reuniões, eventos, conferências, equipes esportivas e mais.",
|
"freeSchedulingPollMetaDescription": "Crie uma sondagem de agendamento gratuita em segundos. Ideal para organizar reuniões, eventos, conferências, equipes esportivas e mais.",
|
||||||
"freeSchedulingPollTitle": "Encontre uma data para o seu próximo evento",
|
"freeSchedulingPollTitle": "Procurando uma sondagem de agendamento gratuita?",
|
||||||
"freeSchedulingPollDescription": "O Rallly permite que você crie sondagens de agendamento bonitas e fáceis de usar para encontrar o melhor horário para o seu próximo evento.",
|
"freeSchedulingPollDescription": "O Rallly permite que você crie sondagens de agendamento bonitas e fáceis de usar para encontrar o melhor horário para o seu próximo evento.",
|
||||||
"new": "Novo",
|
"new": "Novo",
|
||||||
"metaTitle": "Rallly - Agendar reuniões de grupo",
|
"metaTitle": "Rallly - Agendar reuniões de grupo",
|
||||||
"metaDescription": "Crie sondagens e vote para encontrar o melhor dia ou hora. Uma alternativa gratuita ao Doodle.",
|
"metaDescription": "Crie sondagens e vote para encontrar o melhor dia ou hora. Uma alternativa gratuita ao Doodle.",
|
||||||
"when2meetAlternativeMetaTitle": "Melhor alternativa ao When2Meet: Rallly",
|
"selfHostingBlog": "Rallly 3.0 Auto-Hospedagem"
|
||||||
"when2meetAlternativeMetaDescription": "Encontre uma melhor forma de agendar reuniões com o Rallly, a melhor alternativa gratuita ao When2Meet. Fácil de utilizar e gratuito.",
|
|
||||||
"when2meetAlternative": "Ainda usa o When2Meet?",
|
|
||||||
"when2meetAlternativeDescription": "Crie sondagens profissionais e sem anúncios com o Rallly.",
|
|
||||||
"meetingPoll": "Crie sondagens para reuniões profissionais com Rallly",
|
|
||||||
"meetingPollDescription": "As sondagens para reuniões são uma ótima forma de obter a disponibilidade das pessoas. O Rallly permite-lhe criar facilmente belas sondagens de reuniões.",
|
|
||||||
"meetingPollMetaTitle": "Sondagem de reunião",
|
|
||||||
"meetingPollMetaDescription": "Agende facilmente reuniões com a nossa funcionalidade de sondagem, garantindo a disponibilidade de todos.",
|
|
||||||
"quickCreateBlog": "Apresentação do Quick Create"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,9 +8,9 @@
|
||||||
"canUseFree": "Posso usar o Rallly gratuitamente?",
|
"canUseFree": "Posso usar o Rallly gratuitamente?",
|
||||||
"whyUpgrade": "Por que devo atualizar?",
|
"whyUpgrade": "Por que devo atualizar?",
|
||||||
"howToUpgrade": "Como faço para atualizar para um plano pago?",
|
"howToUpgrade": "Como faço para atualizar para um plano pago?",
|
||||||
"howToUpgradeAnswer": "Para atualizar, você pode ir para as suas <a>definições de cobrança</a> e clicar em <b>Atualizar</b>.",
|
"howToUpgradeAnswer": "Para atualizar, você pode ir para suas <a>configurações de cobrança</a> e clicar em <b>Atualizar</b>.",
|
||||||
"cancelSubscription": "Como faço para cancelar minha assinatura?",
|
"cancelSubscription": "Como faço para cancelar minha assinatura?",
|
||||||
"cancelSubscriptionAnswer": "Você pode cancelar a sua assinatura a qualquer momento acessando as suas <a>definições de cobrança</a>. Uma vez que você cancele a sua assinatura, ainda terá acesso ao seu plano pago até ao final do seu período de cobrança. Após isso, você será rebaixado para um plano gratuito.",
|
"cancelSubscriptionAnswer": "Você pode cancelar sua assinatura a qualquer momento acessando suas <a>configurações de cobrança</a>. Uma vez que você cancele sua assinatura, ainda terá acesso ao seu plano pago até o final do seu período de cobrança. Após isso, você será rebaixado para um plano gratuito.",
|
||||||
"billingPeriodMonthly": "Mensal",
|
"billingPeriodMonthly": "Mensal",
|
||||||
"billingPeriodYearly": "Anual",
|
"billingPeriodYearly": "Anual",
|
||||||
"planFreeDescription": "Para usuários casuais",
|
"planFreeDescription": "Para usuários casuais",
|
||||||
|
@ -28,7 +28,5 @@
|
||||||
"whenPollInactive": "Quando uma enquete se torna inativa?",
|
"whenPollInactive": "Quando uma enquete se torna inativa?",
|
||||||
"whenPollInactiveAnswer": "As enquetes se tornam inativas quando todas as opções de data estão no passado E a enquete não foi acessada por mais de 30 dias. Enquetes inativas são automaticamente excluídas se você não tiver uma assinatura paga.",
|
"whenPollInactiveAnswer": "As enquetes se tornam inativas quando todas as opções de data estão no passado E a enquete não foi acessada por mais de 30 dias. Enquetes inativas são automaticamente excluídas se você não tiver uma assinatura paga.",
|
||||||
"yearlyBillingDescription": "por ano",
|
"yearlyBillingDescription": "por ano",
|
||||||
"annualBenefit": "{count} meses grátis",
|
"annualBenefit": "{count} meses grátis"
|
||||||
"pricingTitle": "Comece gratuitamente",
|
|
||||||
"pricingSubtitle": "Atualize para um plano pago para ter acesso a recursos premium"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404: Не найдено",
|
"notFoundTitle": "404: Не найдено",
|
||||||
"notFoundDescription": "Мы не смогли найти страницу, которую вы ищете.",
|
"notFoundDescription": "Мы не смогли найти страницу, которую вы ищете.",
|
||||||
"goToHome": "Вернуться на главную",
|
"goToHome": "Вернуться на главную",
|
||||||
|
"goToApp": "К приложению",
|
||||||
"pricing": "Цены",
|
"pricing": "Цены",
|
||||||
"bestDoodleAlternative": "Лучшая альтернатива Doodle",
|
"bestDoodleAlternative": "Лучшая альтернатива Doodle",
|
||||||
"freeSchedulingPoll": "Бесплатный опрос о расписании",
|
"freeSchedulingPoll": "Бесплатный опрос о расписании",
|
||||||
|
@ -22,7 +23,5 @@
|
||||||
"availabilityPoll": "Опрос доступности",
|
"availabilityPoll": "Опрос доступности",
|
||||||
"solutions": "Решения",
|
"solutions": "Решения",
|
||||||
"howItWorks": "Как это работает",
|
"howItWorks": "Как это работает",
|
||||||
"status": "Статус",
|
"status": "Статус"
|
||||||
"when2MeetAlternative": "Альтернатива When2Meet",
|
|
||||||
"meetingPoll": "Опрос для планирования встреч"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Создайте такую страницу за секунды!",
|
"createPageLikeThis": "Создайте такую страницу за секунды!",
|
||||||
"noLoginRequired": "Регистрация не требуется",
|
"noLoginRequired": "Регистрация не требуется",
|
||||||
|
"headline": "Откажитесь от переписки по электронной почте",
|
||||||
|
"subheading": "Упростите планирование и сэкономьте время",
|
||||||
"pcmagQuote": "“Создайте опрос о расписании за минимум времени.”",
|
"pcmagQuote": "“Создайте опрос о расписании за минимум времени.”",
|
||||||
"hubspotQuote": "“Самый простой способ опроса доступности для больших групп.”",
|
"hubspotQuote": "“Самый простой способ опроса доступности для больших групп.”",
|
||||||
"goodfirmsQuote": "\"Уникален в своей простоте и требует минимум времени на взаимодействие\"",
|
"goodfirmsQuote": "\"Уникален в своей простоте и требует минимум времени на взаимодействие\"",
|
||||||
|
@ -8,8 +10,6 @@
|
||||||
"ericQuote": "«Если ваше планирование встреч обитает в электронной почте, я настоятельно рекомендую попробовать Rallly, чтобы упростить планирование времени, сделав рабочий день более организованным и менее напряженным.»",
|
"ericQuote": "«Если ваше планирование встреч обитает в электронной почте, я настоятельно рекомендую попробовать Rallly, чтобы упростить планирование времени, сделав рабочий день более организованным и менее напряженным.»",
|
||||||
"viaTrustpilot": "на Trustpilot",
|
"viaTrustpilot": "на Trustpilot",
|
||||||
"ericJobTitle": "Исполнительный помощник в Массачусетском технологическом институте",
|
"ericJobTitle": "Исполнительный помощник в Массачусетском технологическом институте",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ зарегистрированных пользователей",
|
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ опросов создано",
|
|
||||||
"statsLanguagesSupported": "10+ поддерживаемых языков",
|
"statsLanguagesSupported": "10+ поддерживаемых языков",
|
||||||
"hint": "Это бесплатно! Регистрация не требуется.",
|
"hint": "Это бесплатно! Регистрация не требуется.",
|
||||||
"doodleAlternative": "Лучшая бесплатная альтернатива Doodle",
|
"doodleAlternative": "Лучшая бесплатная альтернатива Doodle",
|
||||||
|
@ -23,20 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Лучшая бесплатная альтернатива Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Лучшая бесплатная альтернатива Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Ищете альтернативу Doodle? Попробуйте Rallly! Он бесплатный, прост в использовании и не требует учетной записи.",
|
"doodleAlternativeMetaDescription": "Ищете альтернативу Doodle? Попробуйте Rallly! Он бесплатный, прост в использовании и не требует учетной записи.",
|
||||||
"createASchedulingPoll": "Создайте опрос о расписании",
|
"createASchedulingPoll": "Создайте опрос о расписании",
|
||||||
"freeSchedulingPollMetaTitle": "Создайте бесплатный опрос для планирования за секунды | Регистрация не требуется",
|
"freeSchedulingPollMetaTitle": "Бесплатный опрос о расписании | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Создайте бесплатный опрос о расписании в считанные секунды. Идеально подходит для организации встреч, мероприятий, конференций, спортивных команд и многого другого.",
|
"freeSchedulingPollMetaDescription": "Создайте бесплатный опрос о расписании в считанные секунды. Идеально подходит для организации встреч, мероприятий, конференций, спортивных команд и многого другого.",
|
||||||
"freeSchedulingPollTitle": "Найдите дату для вашего следующего мероприятия",
|
"freeSchedulingPollTitle": "Ищете бесплатный опрос о расписании?",
|
||||||
"freeSchedulingPollDescription": "Rallly позволяет вам создавать красивые и простые в использовании опросы о расписании, чтобы вы могли найти лучшее время для вашего следующего события.",
|
"freeSchedulingPollDescription": "Rallly позволяет вам создавать красивые и простые в использовании опросы о расписании, чтобы вы могли найти лучшее время для вашего следующего события.",
|
||||||
"new": "Новый",
|
"new": "Новый",
|
||||||
"metaTitle": "Rallly - Планируйте групповые встречи",
|
"metaTitle": "Rallly - Планируйте групповые встречи",
|
||||||
"metaDescription": "Создавайте опросы и голосуйте, чтобы определить лучший день или время. Бесплатная альтернатива Doodle.",
|
"metaDescription": "Создавайте опросы и голосуйте, чтобы определить лучший день или время. Бесплатная альтернатива Doodle.",
|
||||||
"when2meetAlternativeMetaTitle": "Лучшая альтернатива When2Meet: Rallly",
|
"selfHostingBlog": "Самостоятельный хостинг Rallly 3.0"
|
||||||
"when2meetAlternativeMetaDescription": "Найдите лучший способ планировать встречи с Rallly — лучшей бесплатной альтернативой When2Meet. Простой в использовании и полностью бесплатный.",
|
|
||||||
"when2meetAlternative": "До сих пор используете When2Meet?",
|
|
||||||
"when2meetAlternativeDescription": "Создавайте профессиональные опросы для встреч без рекламы и бесплатно с Rallly.",
|
|
||||||
"meetingPoll": "Создавайте профессиональные опросы для встреч с Rallly",
|
|
||||||
"meetingPollDescription": "Опросы для встреч — отличный способ узнать доступность участников. С помощью Rallly вы можете легко создавать красивые опросы для планирования встреч.",
|
|
||||||
"meetingPollMetaTitle": "Опрос для планирования встреч",
|
|
||||||
"meetingPollMetaDescription": "Легко планируйте встречи с помощью нашей функции опроса, гарантируя доступность всех участников.",
|
|
||||||
"quickCreateBlog": "Представляем функцию быстрого создания"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,7 +28,5 @@
|
||||||
"whenPollInactive": "Когда опрос становится неактивным?",
|
"whenPollInactive": "Когда опрос становится неактивным?",
|
||||||
"whenPollInactiveAnswer": "Опросы становятся неактивными, когда все варианты дат находятся в прошлом И к опросу не обращались более 30 дней. Неактивные опросы автоматически удаляются, если у вас нет платной подписки.",
|
"whenPollInactiveAnswer": "Опросы становятся неактивными, когда все варианты дат находятся в прошлом И к опросу не обращались более 30 дней. Неактивные опросы автоматически удаляются, если у вас нет платной подписки.",
|
||||||
"yearlyBillingDescription": "в год",
|
"yearlyBillingDescription": "в год",
|
||||||
"annualBenefit": "{count} месяцев бесплатно",
|
"annualBenefit": "{count} месяцев бесплатно"
|
||||||
"pricingTitle": "Начните бесплатно",
|
|
||||||
"pricingSubtitle": "Перейдите на платный тариф, чтобы получить доступ к премиум-функциям"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
"notFoundTitle": "404 nenájdené",
|
"notFoundTitle": "404 nenájdené",
|
||||||
"notFoundDescription": "Nemohli sme nájsť stránku, ktorú hľadáte.",
|
"notFoundDescription": "Nemohli sme nájsť stránku, ktorú hľadáte.",
|
||||||
"goToHome": "Prejsť na Domovskú stránku",
|
"goToHome": "Prejsť na Domovskú stránku",
|
||||||
|
"goToApp": "Prejsť do aplikácie",
|
||||||
"pricing": "Cenník",
|
"pricing": "Cenník",
|
||||||
"bestDoodleAlternative": "Najlepšia alternatíva k Doodle",
|
"bestDoodleAlternative": "Najlepšia alternatíva k Doodle",
|
||||||
"freeSchedulingPoll": "Hlasovanie o termínoch stretnutia zadarmo",
|
"freeSchedulingPoll": "Hlasovanie o termínoch stretnutia zadarmo",
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Vytvorte stránku, ako je táto, za pár sekúnd!",
|
"createPageLikeThis": "Vytvorte stránku, ako je táto, za pár sekúnd!",
|
||||||
"noLoginRequired": "Bez prihlásenia",
|
"noLoginRequired": "Bez prihlásenia",
|
||||||
|
"headline": "Zabudnite na nekonečnú výmenu emailov",
|
||||||
|
"subheading": "Zefektívnite svoje plánovanie a ušetrite čas",
|
||||||
"pcmagQuote": "\"Nastavte skupinové hlasovanie jednoducho a rýchlo.\"",
|
"pcmagQuote": "\"Nastavte skupinové hlasovanie jednoducho a rýchlo.\"",
|
||||||
"hubspotQuote": "\"Najjednoduchšia voľba pre hľadanie voľného termínu skupiny.\"",
|
"hubspotQuote": "\"Najjednoduchšia voľba pre hľadanie voľného termínu skupiny.\"",
|
||||||
"goodfirmsQuote": "\"Unikátne v jednoduchosti a efektivite plánovania.\"",
|
"goodfirmsQuote": "\"Unikátne v jednoduchosti a efektivite plánovania.\"",
|
||||||
|
@ -21,9 +23,12 @@
|
||||||
"doodleAlternativeMetaTitle": "Najlepšia bezplatná alternatíva k Doodle | Rallly",
|
"doodleAlternativeMetaTitle": "Najlepšia bezplatná alternatíva k Doodle | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Hľadáte alternatívu k Doodle? Skúste aplikáciu Rallly! Je zadarmo, je jednoduchá a nevyžaduje žiadny účet.",
|
"doodleAlternativeMetaDescription": "Hľadáte alternatívu k Doodle? Skúste aplikáciu Rallly! Je zadarmo, je jednoduchá a nevyžaduje žiadny účet.",
|
||||||
"createASchedulingPoll": "Vytvorte hlasovanie o stretnutí",
|
"createASchedulingPoll": "Vytvorte hlasovanie o stretnutí",
|
||||||
|
"freeSchedulingPollMetaTitle": "Plánovacia anketa zdarma | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Vytvorte plánovaciu anketu zadarmo za pár sekúnd. Ideálne pre organizáciu schôdzok, podujatí, konferencií, športových tímov a ďalších.",
|
"freeSchedulingPollMetaDescription": "Vytvorte plánovaciu anketu zadarmo za pár sekúnd. Ideálne pre organizáciu schôdzok, podujatí, konferencií, športových tímov a ďalších.",
|
||||||
|
"freeSchedulingPollTitle": "Hľadáte bezplatný nástroj na plánovanie stretnutí?",
|
||||||
"freeSchedulingPollDescription": "Rallly vám umožňuje vytvoriť prehľadné a jednoduché plánovacie ankety, aby ste vždy našli najlepší termín na ďalšiu udalosť.",
|
"freeSchedulingPollDescription": "Rallly vám umožňuje vytvoriť prehľadné a jednoduché plánovacie ankety, aby ste vždy našli najlepší termín na ďalšiu udalosť.",
|
||||||
"new": "Nový",
|
"new": "Nový",
|
||||||
"metaTitle": "Rallly — Naplánujte skupinové stretnutia",
|
"metaTitle": "Rallly — Naplánujte skupinové stretnutia",
|
||||||
"metaDescription": "Naplánujte si skupinové stretnutia v ten najvhodnejší čas. Bezplatná alternatíva k službe Doodle."
|
"metaDescription": "Naplánujte si skupinové stretnutia v ten najvhodnejší čas. Bezplatná alternatíva k službe Doodle.",
|
||||||
|
"selfHostingBlog": "Rallly 3.0 inštalácia s vlastnou správou"
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,5 @@
|
||||||
"whenPollInactive": "Kedy sa anketa stáva neaktívnou?",
|
"whenPollInactive": "Kedy sa anketa stáva neaktívnou?",
|
||||||
"whenPollInactiveAnswer": "Ankety sa stávajú neaktívnymi, keď sú všetky možnosti dátumu minulé A anketa nebola zobrazená viac ako 30 dní. Neaktívne ankety sú automaticky odstránené, ak nemáte platené členstvo.",
|
"whenPollInactiveAnswer": "Ankety sa stávajú neaktívnymi, keď sú všetky možnosti dátumu minulé A anketa nebola zobrazená viac ako 30 dní. Neaktívne ankety sú automaticky odstránené, ak nemáte platené členstvo.",
|
||||||
"yearlyBillingDescription": "za rok",
|
"yearlyBillingDescription": "za rok",
|
||||||
"annualBenefit": "{count} mesiacov zadarmo",
|
"annualBenefit": "{count} mesiacov zadarmo"
|
||||||
"pricingTitle": "Začnite teraz bezplatne"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,15 +15,13 @@
|
||||||
"notFoundTitle": "404 hittades inte",
|
"notFoundTitle": "404 hittades inte",
|
||||||
"notFoundDescription": "Vi kunde inte hitta sidan du letade efter.",
|
"notFoundDescription": "Vi kunde inte hitta sidan du letade efter.",
|
||||||
"goToHome": "Gå till startsidan",
|
"goToHome": "Gå till startsidan",
|
||||||
|
"goToApp": "Gå till App",
|
||||||
"pricing": "Priser",
|
"pricing": "Priser",
|
||||||
"bestDoodleAlternative": "Det bästa Doodle-alternativet",
|
"bestDoodleAlternative": "Det bästa Doodle-alternativet",
|
||||||
"freeSchedulingPoll": "Gratis schemaläggnings-förfrågan",
|
"freeSchedulingPoll": "Gratis schemaläggningsomröstning",
|
||||||
"getStarted": "Kom igång",
|
"getStarted": "Kom igång",
|
||||||
"availabilityPoll": "Fråga om tillgänglig",
|
"availabilityPoll": "Tillgänglighetsundersökning",
|
||||||
"solutions": "Lösningar",
|
"solutions": "Lösningar",
|
||||||
"howItWorks": "Så här fungerar det",
|
"howItWorks": "Hur det fungerar",
|
||||||
"status": "Status",
|
"status": "Status"
|
||||||
"when2MeetAlternative": "Alternativ till When2Meet",
|
|
||||||
"meetingPoll": "Mötesförfrågan",
|
|
||||||
"signUp": "Registrera"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,42 +1,36 @@
|
||||||
{
|
{
|
||||||
"createPageLikeThis": "Skapa en sida som denna på några sekunder!",
|
"createPageLikeThis": "Skapa en sida som denna på några sekunder!",
|
||||||
"noLoginRequired": "Ingen inloggning krävs",
|
"noLoginRequired": "Ingen inloggning krävs",
|
||||||
"pcmagQuote": "“Set up a scheduling poll in as little time as possible.”",
|
"headline": "Sluta med fram-och-tillbaka-e-postmeddelanden",
|
||||||
"hubspotQuote": "“The simplest choice for availability polling for large groups.”",
|
"subheading": "Effektivisera din schemaläggning och spara tid",
|
||||||
|
"pcmagQuote": "\"Skapa en schemaläggningsundersökning på så kort tid som möjligt\"",
|
||||||
|
"hubspotQuote": "\"Det enklaste valet för tillgänglighetsundersökning för stora grupper.\"",
|
||||||
"goodfirmsQuote": "\"Unik i sin enkelhet och kräver minimal interaktionstid.\"",
|
"goodfirmsQuote": "\"Unik i sin enkelhet och kräver minimal interaktionstid.\"",
|
||||||
"popsciQuote": "\"Det perfekta valet om du vill hålla dina OSA enkla.\"",
|
"popsciQuote": "\"Det perfekta valet om du vill hålla dina OSA enkla.\"",
|
||||||
"ericQuote": "\"Om ditt sätt att komma överens om scheman är via e-post rekommenderar jag starkt att du testar Rallly och låter det underlätta dina scheman så att din arbetsdag blir tydligare och mer avslappnad.\"",
|
"ericQuote": "\"Om ditt sätt att komma överens om scheman är via e-post rekommenderar jag starkt att du testar Rallly och låter det underlätta dina scheman så att din arbetsdag blir tydligare och mer avslappnad.\"",
|
||||||
"viaTrustpilot": "via Trustpilot",
|
"viaTrustpilot": "via Trustpilot",
|
||||||
"ericJobTitle": "Executive Assistant på MIT",
|
"ericJobTitle": "Executive Assistant på MIT",
|
||||||
"statsUsersRegistered": "{count, number, ::compact-short}+ registrerade användare",
|
"statsUsersRegistered": "{count, number, ::compact-short}+ registrerade användare",
|
||||||
"statsPollsCreated": "{count, number, ::compact-short}+ förfrågningar skapade",
|
"statsPollsCreated": "{count, number, ::compact-short}+ omröstningar skapade",
|
||||||
"statsLanguagesSupported": "10+ språk som stöds",
|
"statsLanguagesSupported": "10+ språk som stöds",
|
||||||
"hint": "Det är gratis! Ingen inloggning krävs.",
|
"hint": "Det är gratis! Ingen inloggning krävs.",
|
||||||
"doodleAlternative": "Det bästa gratisalternativet till Doodle",
|
"doodleAlternative": "Det bästa gratisalternativet till Doodle",
|
||||||
"doodleAlternativeDescription": "Rallly är Doodle-alternativet som alla letar efter. Tusentals användare har redan gjort bytet och njuter nu av professionella annonsfria mötesförfrågningar i ett intuitivt och lättanvänt gränssnitt. ",
|
"doodleAlternativeDescription": "Rallly är Doodle-alternativet som alla letar efter. Tusentals användare har redan gjort bytet och njuter nu av professionella mötesundersökningar utan annonser, i ett intuitivt och lättanvänt gränssnitt. ",
|
||||||
"availabilityPollCta": "Skapa en förfrågan om tillgänglighet",
|
"availabilityPollCta": "Skapa en tillgänglighetsundersökning",
|
||||||
"availabilityPollMetaTitle": "Förfrågan om tillgänglighet | Effektivisera schemaläggning med Rallly",
|
"availabilityPollMetaTitle": "Tillgänglighetsundersökning | Effektivisera schemaläggning med Rallly",
|
||||||
"availabilityPollMetaDescription": "Schemalägg möten och evenemang sömlöst med Ralllys förfrågan om tillgänglighet. Se till att allas tillgänglighet beaktas för en smidig och effektiv planering.",
|
"availabilityPollMetaDescription": "Schemalägg möten och evenemang sömlöst med Ralllys tillgänglighetsundersökning. Se till att allas tillgänglighet beaktas för en smidig och effektiv planeringsupplevelse.",
|
||||||
"availabilityPollTitle": "Förfrågan om tillgänglighet",
|
"availabilityPollTitle": "Tillgänglighetsundersökningar",
|
||||||
"availabilityPollDescription": "Trött på att kämpa för att hitta en mötestid som passar alla? Effektivisera schemaläggningen med en förfrågan om tillgänglighet - ett kraftfullt verktyg designat för att förenkla och optimera din planering av evenemang och möten.",
|
"availabilityPollDescription": "Trött på att kämpa för att hitta en mötestid som passar alla? Effektivisera ditt schema med en tillgänglighetsundersökning - ett kraftfullt verktyg designat för att förenkla och optimera din planering av evenemang och möten.",
|
||||||
"createAPoll": "Skapa en mötes-förfrågan",
|
"createAPoll": "Skapa en mötesundersökning",
|
||||||
"doodleAlternativeMetaTitle": "Bästa gratis doodlealternativ | Rallly",
|
"doodleAlternativeMetaTitle": "Bästa gratis doodlealternativ | Rallly",
|
||||||
"doodleAlternativeMetaDescription": "Letar du efter ett Doodle-alternativ? Testa Rallly! Det är gratis, lätt att använda och kräver inget konto.",
|
"doodleAlternativeMetaDescription": "Letar du efter ett Doodle-alternativ? Testa Rallly! Det är gratis, lätt att använda och kräver inget konto.",
|
||||||
"createASchedulingPoll": "Skapa en schemaläggningsförfrågan",
|
"createASchedulingPoll": "Skapa en schemaläggningsundersökning",
|
||||||
"freeSchedulingPollMetaTitle": "Skapa en mötes-förfrågan gratis, på en gång | Du behöver inget konto",
|
"freeSchedulingPollMetaTitle": "Gratis schemaläggningsundersökning | Rallly",
|
||||||
"freeSchedulingPollMetaDescription": "Skapa gratis en schemaläggningsförfrågan på några sekunder. Idealisk för att organisera möten, evenemang, konferenser, idrottslag och annat.",
|
"freeSchedulingPollMetaDescription": "Skapa en gratis schemaläggningsundersökning på några sekunder. Idealisk för att organisera möten, evenemang, konferenser, idrottslag och mer.",
|
||||||
"freeSchedulingPollTitle": "Hitta ett datum för ditt nästa evenemang",
|
"freeSchedulingPollTitle": "Letar du efter en gratis schemaläggningsundersökning?",
|
||||||
"freeSchedulingPollDescription": "Rallly låter dig skapa snygga och lättanvända schemaläggningsförfrågan så att du kan hitta den bästa tiden för ditt nästa evenemang.",
|
"freeSchedulingPollDescription": "Rallly låter dig skapa vackra och lättanvända schemaläggningsundersökningar så att du kan hitta den bästa tiden för ditt nästa evenemang.",
|
||||||
"new": "Ny",
|
"new": "Ny",
|
||||||
"metaTitle": "Rallly - Schemalägg gruppmöten",
|
"metaTitle": "Rallly - Schemalägg gruppmöten",
|
||||||
"metaDescription": "Rallly är det snabbaste och enklaste schemaläggnings- och samarbetsverktyget. Skapa en mötesförfrågan på några sekunder, ingen inloggning krävs.",
|
"metaDescription": "Skapa omröstningar och rösta för att hitta den bästa dagen eller tiden. Ett kostnadsfritt alternativ till Doodle.",
|
||||||
"when2meetAlternativeMetaTitle": "Bästa alternativet till When2Meet: Rallly",
|
"selfHostingBlog": "Egen drift av Rallly 3.0"
|
||||||
"when2meetAlternativeMetaDescription": "Hitta ett bättre sätt att schemalägga möten med Rallly, det bästa fria alternativet till When2Meet. Lätt att använda och gratis.",
|
|
||||||
"when2meetAlternative": "Använder du fortfarande When2Meet?",
|
|
||||||
"when2meetAlternativeDescription": "Skapa professionella, reklamfria mötes-förfrågningar gratis med Rallly.",
|
|
||||||
"meetingPoll": "Skapa professionella mötes-förfrågningar med Rallly",
|
|
||||||
"meetingPollDescription": "Mötes-förfrågningar är ett bra sätt att reda på om personer är tillgängliga. Rallly låter dig enkelt skapa snygga förfrågningar.",
|
|
||||||
"meetingPollMetaTitle": "Mötesförfrågan",
|
|
||||||
"meetingPollMetaDescription": "Med vår förfrågningsfunktion kan du enkelt schemalägga möten så att allas tillgänglighet beaktas.",
|
|
||||||
"quickCreateBlog": "Introducerar SnabbSkapa"
|
|
||||||
}
|
}
|
||||||
|
|