Migrate translations to keys and switch to Localazy (#26106)

pull/26122/head
Michael Telatynski 2023-09-05 17:17:25 +01:00 committed by GitHub
parent 00803950bf
commit c525b633bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
98 changed files with 2327 additions and 1922 deletions

View File

@ -0,0 +1,8 @@
name: Localazy Download
on:
workflow_dispatch: {}
jobs:
download:
uses: matrix-org/matrix-web-i18n/.github/workflows/localazy_download.yaml@main
secrets:
ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}

11
.github/workflows/localazy_upload.yaml vendored Normal file
View File

@ -0,0 +1,11 @@
name: Localazy Upload
on:
push:
branches: [develop]
paths:
- "src/strings/i18n/en_EN.json"
jobs:
upload:
uses: matrix-org/matrix-web-i18n/.github/workflows/localazy_upload.yaml@main
secrets:
LOCALAZY_WRITE_KEY: ${{ secrets.LOCALAZY_WRITE_KEY }}

View File

@ -28,7 +28,7 @@ jobs:
i18n_lint: i18n_lint:
name: "i18n Check" name: "i18n Check"
uses: matrix-org/matrix-react-sdk/.github/workflows/i18n_check.yml@develop uses: matrix-org/matrix-web-i18n/.github/workflows/i18n_check.yml@main
js_lint: js_lint:
name: "ESLint" name: "ESLint"

View File

@ -1,7 +1,7 @@
[![Chat](https://img.shields.io/matrix/element-web:matrix.org?logo=matrix)](https://matrix.to/#/#element-web:matrix.org) [![Chat](https://img.shields.io/matrix/element-web:matrix.org?logo=matrix)](https://matrix.to/#/#element-web:matrix.org)
![Tests](https://github.com/vector-im/element-web/actions/workflows/tests.yaml/badge.svg) ![Tests](https://github.com/vector-im/element-web/actions/workflows/tests.yaml/badge.svg)
![Static Analysis](https://github.com/vector-im/element-web/actions/workflows/static_analysis.yaml/badge.svg) ![Static Analysis](https://github.com/vector-im/element-web/actions/workflows/static_analysis.yaml/badge.svg)
[![Weblate](https://translate.element.io/widgets/element-web/-/element-web/svg-badge.svg)](https://translate.element.io/engage/element-web/) [![Localazy](https://img.shields.io/endpoint?url=https%3A%2F%2Fconnect.localazy.com%2Fstatus%2Felement-web%2Fdata%3Fcontent%3Dall%26title%3Dlocalazy%26logo%3Dtrue)](https://localazy.com/p/element-web)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=element-web&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=element-web) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=element-web&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=element-web)
[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=element-web&metric=coverage)](https://sonarcloud.io/summary/new_code?id=element-web) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=element-web&metric=coverage)](https://sonarcloud.io/summary/new_code?id=element-web)
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=element-web&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=element-web) [![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=element-web&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=element-web)
@ -388,8 +388,6 @@ To add a new translation, head to the [translating doc](docs/translating.md).
For a developer guide, see the [translating dev doc](docs/translating-dev.md). For a developer guide, see the [translating dev doc](docs/translating-dev.md).
[<img src="https://translate.element.io/widgets/element-web/-/multi-auto.svg" alt="translationsstatus" width="340">](https://translate.element.io/engage/element-web/?utm_source=widget)
# Triaging issues # Triaging issues
Issues are triaged by community members and the Web App Team, following the [triage process](https://github.com/vector-im/element-meta/wiki/Triage-process). Issues are triaged by community members and the Web App Team, following the [triage process](https://github.com/vector-im/element-meta/wiki/Triage-process).

View File

@ -6,11 +6,16 @@
- Including up-to-date versions of matrix-react-sdk and matrix-js-sdk - Including up-to-date versions of matrix-react-sdk and matrix-js-sdk
- Latest LTS version of Node.js installed - Latest LTS version of Node.js installed
- Be able to understand English - Be able to understand English
- Be able to understand the language you want to translate Element into
## Translating strings vs. marking strings for translation ## Translating strings vs. marking strings for translation
Translating strings are done with the `_t()` function found in matrix-react-sdk/lib/languageHandler.js. It is recommended to call this function wherever you introduce a string constant which should be translated. However, translating can not be performed until after the translation system has been initialized. Thus, sometimes translation must be performed at a different location in the source code than where the string is introduced. This breaks some tooling and makes it difficult to find translatable strings. Therefore, there is the alternative `_td()` function which is used to mark strings for translation, without actually performing the translation (which must still be performed separately, and after the translation system has been initialized). Translating strings are done with the `_t()` function found in matrix-react-sdk/lib/languageHandler.js.
It is recommended to call this function wherever you introduce a string constant which should be translated.
However, translating can not be performed until after the translation system has been initialized.
Thus, sometimes translation must be performed at a different location in the source code than where the string is introduced.
This breaks some tooling and makes it difficult to find translatable strings.
Therefore, there is the alternative `_td()` function which is used to mark strings for translation,
without actually performing the translation (which must still be performed separately, and after the translation system has been initialized).
Basically, whenever a translatable string is introduced, you should call either `_t()` immediately OR `_td()` and later `_t()`. Basically, whenever a translatable string is introduced, you should call either `_t()` immediately OR `_td()` and later `_t()`.
@ -29,24 +34,36 @@ function getColorName(hex) {
} }
``` ```
## Key naming rules
These rules are based on https://github.com/vector-im/element-x-android/blob/develop/tools/localazy/README.md
At this time we are not trying to have a translation key per UI element as some methodologies use,
whilst that would offer the greatest flexibility, it would also make reuse between projects nigh impossible.
We are aiming for a set of common strings to be shared then some more localised translations per context they may appear in.
1. Ensure the string doesn't already exist in a related project, such as https://localazy.com/p/element
2. Keys for common strings, i.e. strings that can be used at multiple places must start by `action_` if this is a verb, or `common_` if not
3. Keys for common accessibility strings must start by `a11y_`. Example:` a11y_hide_password`
4. Otherwise, try to group keys logically and nest where appropriate, such as `keyboard_` for strings relating to keyboard shortcuts.
5. Ensure your translation keys do not include `.` or `|` or ` `. Try to balance string length against descriptiveness.
## Adding new strings ## Adding new strings
1. Check if the import `import { _t } from 'matrix-react-sdk/src/languageHandler';` is present. If not add it to the other import statements. Also import `_td` if needed. 1. Check if the import `import { _t } from 'matrix-react-sdk/src/languageHandler';` is present. If not add it to the other import statements. Also import `_td` if needed.
1. Add `_t()` to your string. (Don't forget curly braces when you assign an expression to JSX attributes in the render method). If the string is introduced at a point before the translation system has not yet been initialized, use `_td()` instead, and call `_t()` at the appropriate time. 1. Add `_t()` to your string passing the translation key you come up with based on the rules above. If the string is introduced at a point before the translation system has not yet been initialized, use `_td()` instead, and call `_t()` at the appropriate time.
1. Run `yarn i18n` to update `src/i18n/strings/en_EN.json` 1. Run `yarn i18n` to add the keys to `src/i18n/strings/en_EN.json`
1. If you added a string with a plural, you can add other English plural variants to `src/i18n/strings/en_EN.json` (remeber to edit the one in the same project as the source file containing your new translation). 1. Modify the new entries in `src/i18n/strings/en_EN.json` with the English (UK) translations for the added keys.
## Editing existing strings ## Editing existing strings
1. Edit every occurrence of the string inside `_t()` and `_td()` in the JSX files. Edits to existing strings should be performed only via Localazy.
1. Run `yarn i18n` to update `src/i18n/strings/en_EN.json`. (Be sure to run this in the same project as the JSX files you just edited.) There you can also require all translations to be redone if the meaning of the string has changed significantly.
1. Run `yarn prunei18n` to remove the old string from `src/i18n/strings/*.json`.
## Adding variables inside a string. ## Adding variables inside a string.
1. Extend your `_t()` call. Instead of `_t(STRING)` use `_t(STRING, {})` 1. Extend your `_t()` call. Instead of `_t(TKEY)` use `_t(TKEY, {})`
1. Decide how to name it. Please think about if the person who has to translate it can understand what it does. E.g. using the name 'recipient' is bad, because a translator does not know if it is the name of a person, an email address, a user ID, etc. Rather use e.g. recipientEmailAddress. 1. Decide how to name it. Please think about if the person who has to translate it can understand what it does. E.g. using the name 'recipient' is bad, because a translator does not know if it is the name of a person, an email address, a user ID, etc. Rather use e.g. recipientEmailAddress.
1. Add it to the array in `_t` for example `_t(STRING, {variable: this.variable})` 1. Add it to the array in `_t` for example `_t(TKEY, {variable: this.variable})`
1. Add the variable inside the string. The syntax for variables is `%(variable)s`. Please note the _s_ at the end. The name of the variable has to match the previous used name. 1. Add the variable inside the string. The syntax for variables is `%(variable)s`. Please note the _s_ at the end. The name of the variable has to match the previous used name.
- You can use the special `count` variable to choose between multiple versions of the same string, in order to get the correct pluralization. E.g. `_t('You have %(count)s new messages', { count: 2 })` would show 'You have 2 new messages', while `_t('You have %(count)s new messages', { count: 1 })` would show 'You have one new message' (assuming a singular version of the string has been added to the translation file. See above). Passing in `count` is much prefered over having an if-statement choose the correct string to use, because some languages have much more complicated plural rules than english (e.g. they might need a completely different form if there are three things rather than two). - You can use the special `count` variable to choose between multiple versions of the same string, in order to get the correct pluralization. E.g. `_t('You have %(count)s new messages', { count: 2 })` would show 'You have 2 new messages', while `_t('You have %(count)s new messages', { count: 1 })` would show 'You have one new message' (assuming a singular version of the string has been added to the translation file. See above). Passing in `count` is much prefered over having an if-statement choose the correct string to use, because some languages have much more complicated plural rules than english (e.g. they might need a completely different form if there are three things rather than two).
@ -61,4 +78,5 @@ function getColorName(hex) {
- Avoid "translation in parts", i.e. concatenating translated strings or using translated strings in variable substitutions. Context is important for translations, and translating partial strings this way is simply not always possible. - Avoid "translation in parts", i.e. concatenating translated strings or using translated strings in variable substitutions. Context is important for translations, and translating partial strings this way is simply not always possible.
- Concatenating strings often also introduces an implicit assumption about word order (e.g. that the subject of the sentence comes first), which is incorrect for many languages. - Concatenating strings often also introduces an implicit assumption about word order (e.g. that the subject of the sentence comes first), which is incorrect for many languages.
- Translation 'smell test': If you have a string that does not begin with a capital letter (is not the start of a sentence) or it ends with e.g. ':' or a preposition (e.g. 'to') you should recheck that you are not trying to translate a partial sentence. - Translation 'smell test': If you have a string that does not begin with a capital letter (is not the start of a sentence) or it ends with e.g. ':' or a preposition (e.g. 'to') you should recheck that you are not trying to translate a partial sentence.
- If you have multiple strings, that are almost identical, except some part (e.g. a word or two) it is still better to translate the full sentence multiple times. It may seem like inefficient repetion, but unlike programming where you try to minimize repetition, translation is much faster if you have many, full, clear, sentences to work with, rather than fewer, but incomplete sentence fragments. - If you have multiple strings, that are almost identical, except some part (e.g. a word or two) it is still better to translate the full sentence multiple times. It may seem like inefficient repetition, but unlike programming where you try to minimize repetition, translation is much faster if you have many, full, clear, sentences to work with, rather than fewer, but incomplete sentence fragments.
- Don't forget curly braces when you assign an expression to JSX attributes in the render method)

View File

@ -1,63 +1,33 @@
# How to translate Element # How to translate Element
# 🚨 Translations are currently frozen as we are migrating Translation Management Systems! 🚨
## Requirements ## Requirements
- Web Browser - Web Browser
- Be able to understand English - Be able to understand English
- Be able to understand the language you want to translate Element into - Be able to understand the language you want to translate Element into
## Step 0: Join #element-translations:matrix.org ## Join #element-translations:matrix.org
1. Come and join https://matrix.to/#/#element-translations:matrix.org for general discussion 1. Come and join https://matrix.to/#/#element-translations:matrix.org for general discussion
2. Join https://matrix.to/#/#element-translators:matrix.org for language-specific rooms 2. Join https://matrix.to/#/#element-translators:matrix.org for language-specific rooms
3. Read scrollback and/or ask if anyone else is working on your language, and co-ordinate if needed. In general little-or-no coordination is needed though :) 3. Read scrollback and/or ask if anyone else is working on your language, and co-ordinate if needed. In general little-or-no coordination is needed though :)
## Step 1: Preparing your Weblate Profile
1. Head to https://translate.element.io and register either via Github or email
2. After registering check if you got an email to verify your account and click the link (if there is none head to step 1.4)
3. Log into weblate
4. Head to https://translate.element.io/accounts/profile/ and select the languages you know and maybe another language you know too.
## How to check if your language already is being translated ## How to check if your language already is being translated
Go to https://translate.element.io/projects/element-web/ and visit the 2 sub-projects. Go to https://localazy.com/p/element-web
If your language is listed go to Step 2a and if not go to Step 2b If your language is listed then you can get started, have a read of https://localazy.com/docs/general/translating-strings
if you need help getting started. If your language is not yet listed please express your wishes to start translating it in
the general discussion room linked above.
## Step 2a: Helping on existing languages. ### What are `%(something)s`?
1. Head to one of the projects listed https://translate.element.io/projects/element-web/ These things are placeholders that are expanded when displayed by Element. They can be room names, usernames or similar.
2. Click on the `translate` button on the right side of your language If you find one, you can move to the right place for your language, but not delete it as the variable will be missing if you do.
3. Fill in the translations in the writeable field. You will see the original English string and the string of your second language above. A special case is `%(count)s` as this is also used to determine which pluralisation is used.
Head to the explanations under Steb 2b ### What are `<link>Something</link>`
## Step 2b: Adding a new language These things are markup tags, they encapsulate sections of translations to be marked up, with links, buttons, emphasis and such.
You must keep these markers surrounding the equivalent string in your language that needs to be marked up.
1. Go to one of the projects listed https://translate.element.io/projects/element-web/
2. Click the `Start new translation` button at the bottom
3. Select a language
4. Start translating like in 2a.3
5. Repeat these steps for the other projects which are listed at the link of step 2b.1
### What means the green button under the text field?
The green button let you save our translations directly. Please only use it if you are 100% sure about that translation. If you do not know a translation please DO NOT click that button. Use the arrows above the translations field and click to the right.
### What means the yellow button under the text field?
The yellow button has to be used if you are unsure about the translation but you have a rough idea. It adds a new suggestion to the string which can than be reviewed by others.
### What are "%(something)s"?
These things are variables that are expanded when displayed by Element. They can be room names, usernames or similar. If you find one, you can move to the right place for your language, but not delete it as the variable will be missing if you do.
A special case is `%(urlStart)s` and `%(urlEnd)s` which are used to mark the beginning of a hyperlink (i.e. `<a href="/somewhere">` and `</a>`. You must keep these markers surrounding the equivalent string in your language that needs to be hyperlinked.
### "I want to come back to this string. How?"
You can use inside the translation field "Review needed" checkbox. It will be shown as Strings that need to be reviewed.
### Further reading
The official Weblate doc provides some more in-depth explanation on how to do translations and talks about do and don'ts. You can find it at: https://docs.weblate.org/en/latest/user/translating.html

View File

@ -25,7 +25,10 @@ const config: Config = {
}, },
testMatch: ["<rootDir>/test/**/*-test.[tj]s?(x)"], testMatch: ["<rootDir>/test/**/*-test.[tj]s?(x)"],
setupFiles: ["jest-canvas-mock"], setupFiles: ["jest-canvas-mock"],
setupFilesAfterEnv: ["<rootDir>/node_modules/matrix-react-sdk/test/setupTests.ts"], setupFilesAfterEnv: [
"<rootDir>/node_modules/matrix-react-sdk/test/setupTests.ts",
"<rootDir>/test/setup/setupLanguage.ts",
],
moduleNameMapper: { moduleNameMapper: {
"\\.(css|scss|pcss)$": "<rootDir>/__mocks__/cssMock.js", "\\.(css|scss|pcss)$": "<rootDir>/__mocks__/cssMock.js",
"\\.(gif|png|ttf|woff2)$": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/imageMock.js", "\\.(gif|png|ttf|woff2)$": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/imageMock.js",
@ -43,6 +46,7 @@ const config: Config = {
"workers/(.+)\\.worker\\.ts": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/workerMock.js", "workers/(.+)\\.worker\\.ts": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/workerMock.js",
"^!!raw-loader!.*": "jest-raw-loader", "^!!raw-loader!.*": "jest-raw-loader",
"RecorderWorklet": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/empty.js", "RecorderWorklet": "<rootDir>/node_modules/matrix-react-sdk/__mocks__/empty.js",
"^fetch-mock$": "<rootDir>/node_modules/fetch-mock",
}, },
transformIgnorePatterns: ["/node_modules/(?!matrix-js-sdk).+$", "/node_modules/(?!matrix-react-sdk).+$"], transformIgnorePatterns: ["/node_modules/(?!matrix-js-sdk).+$", "/node_modules/(?!matrix-react-sdk).+$"],
coverageReporters: ["text-summary", "lcov"], coverageReporters: ["text-summary", "lcov"],

37
localazy.json Normal file
View File

@ -0,0 +1,37 @@
{
"readKey": "a7688614897667993891-866e2615b0a22e6ccef56aea9b10e815efa3e1296752a7a30bd9925f1a8f33e7",
"upload": {
"type": "json",
"keySeparator": "|",
"deprecate": "file",
"features": ["plural_object", "filter_untranslated"],
"files": [
{
"pattern": "src/i18n/strings/en_EN.json",
"file": "element-web.json",
"lang": "inherited"
},
{
"group": "existing",
"pattern": "src/i18n/strings/*.json",
"file": "element-web.json",
"excludes": ["src/i18n/strings/en_EN.json"],
"lang": "${autodetectLang}"
}
]
},
"download": {
"files": [
{
"conditions": "equals: ${file}, element-web.json",
"output": "src/i18n/strings/${langLsrUnderscore}.json"
}
],
"includeSourceLang": "${includeSourceLang|false}",
"langAliases": {
"en-GB": "en-EN"
}
}
}

View File

@ -30,9 +30,10 @@
"UserFriendlyError" "UserFriendlyError"
], ],
"scripts": { "scripts": {
"i18n": "matrix-gen-i18n", "i18n": "matrix-gen-i18n && yarn i18n:sort && yarn i18n:lint",
"prunei18n": "matrix-prune-i18n", "i18n:sort": "jq --sort-keys '.' src/i18n/strings/en_EN.json > src/i18n/strings/en_EN.json.tmp && mv src/i18n/strings/en_EN.json.tmp src/i18n/strings/en_EN.json",
"diff-i18n": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && matrix-gen-i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json", "i18n:lint": "prettier --loglevel silent --write src/i18n/strings/ --ignore-path /dev/null",
"i18n:diff": "cp src/i18n/strings/en_EN.json src/i18n/strings/en_EN_orig.json && yarn i18n && matrix-compare-i18n-files src/i18n/strings/en_EN_orig.json src/i18n/strings/en_EN.json",
"clean": "rimraf lib webapp", "clean": "rimraf lib webapp",
"build": "yarn clean && yarn build:genfiles && yarn build:bundle", "build": "yarn clean && yarn build:genfiles && yarn build:bundle",
"build-stats": "yarn clean && yarn build:genfiles && yarn build:bundle-stats", "build-stats": "yarn clean && yarn build:genfiles && yarn build:bundle-stats",
@ -74,6 +75,7 @@
"gfm.css": "^1.1.2", "gfm.css": "^1.1.2",
"jsrsasign": "^10.5.25", "jsrsasign": "^10.5.25",
"katex": "^0.16.0", "katex": "^0.16.0",
"lodash": "^4.17.21",
"matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop", "matrix-js-sdk": "github:matrix-org/matrix-js-sdk#develop",
"matrix-react-sdk": "github:matrix-org/matrix-react-sdk#develop", "matrix-react-sdk": "github:matrix-org/matrix-react-sdk#develop",
"matrix-widget-api": "^1.3.1", "matrix-widget-api": "^1.3.1",
@ -107,6 +109,7 @@
"@types/jest": "^29.0.0", "@types/jest": "^29.0.0",
"@types/jitsi-meet": "^2.0.2", "@types/jitsi-meet": "^2.0.2",
"@types/jsrsasign": "^10.5.4", "@types/jsrsasign": "^10.5.4",
"@types/lodash": "^4.14.197",
"@types/modernizr": "^3.5.3", "@types/modernizr": "^3.5.3",
"@types/node": "^16", "@types/node": "^16",
"@types/node-fetch": "^2.6.4", "@types/node-fetch": "^2.6.4",
@ -146,7 +149,7 @@
"json-loader": "^0.5.7", "json-loader": "^0.5.7",
"loader-utils": "^3.0.0", "loader-utils": "^3.0.0",
"matrix-mock-request": "^2.5.0", "matrix-mock-request": "^2.5.0",
"matrix-web-i18n": "^2.0.0", "matrix-web-i18n": "^3.1.1",
"mini-css-extract-plugin": "^1", "mini-css-extract-plugin": "^1",
"minimist": "^1.2.6", "minimist": "^1.2.6",
"mkdirp": "^3.0.0", "mkdirp": "^3.0.0",

View File

@ -169,22 +169,22 @@ we don't have an account and should hide them. No account == no guest account ei
<a href="https://element.io" target="_blank" rel="noopener"> <a href="https://element.io" target="_blank" rel="noopener">
<img src="$logoUrl" alt="" class="mx_Logo" /> <img src="$logoUrl" alt="" class="mx_Logo" />
</a> </a>
<h1 class="mx_Header_title">_t("Welcome to Element")</h1> <h1 class="mx_Header_title">_t("welcome_to_element")</h1>
<!-- XXX: Our translations system isn't smart enough to recognize variables in the HTML, so we manually do it --> <!-- XXX: Our translations system isn't smart enough to recognize variables in the HTML, so we manually do it -->
<h4 class="mx_Header_subtitle">_t("Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo")</h4> <h4 class="mx_Header_subtitle">_t("powered_by_matrix_with_logo")</h4>
<div class="mx_ButtonGroup"> <div class="mx_ButtonGroup">
<div class="mx_ButtonRow"> <div class="mx_ButtonRow">
<a href="#/login" class="mx_ButtonParent mx_ButtonSignIn mx_Button_iconSignIn"> <a href="#/login" class="mx_ButtonParent mx_ButtonSignIn mx_Button_iconSignIn">
<div class="mx_ButtonLabel">_t("Sign In")</div> <div class="mx_ButtonLabel">_t("action|sign_in")</div>
</a> </a>
<a href="#/register" class="mx_ButtonParent mx_ButtonCreateAccount mx_Button_iconCreateAccount"> <a href="#/register" class="mx_ButtonParent mx_ButtonCreateAccount mx_Button_iconCreateAccount">
<div class="mx_ButtonLabel">_t("Create Account")</div> <div class="mx_ButtonLabel">_t("action|create_account")</div>
</a> </a>
</div> </div>
<div class="mx_ButtonRow mx_WelcomePage_guestFunctions"> <div class="mx_ButtonRow mx_WelcomePage_guestFunctions">
<div> <div>
<a href="#/directory" class="mx_ButtonParent mx_SecondaryButton mx_Button_iconRoomDirectory"> <a href="#/directory" class="mx_ButtonParent mx_SecondaryButton mx_Button_iconRoomDirectory">
<div class="mx_ButtonLabel">_t("Explore rooms")</div> <div class="mx_ButtonLabel">_t("action|explore_rooms")</div>
</a> </a>
</div> </div>
</div> </div>

View File

@ -79,6 +79,7 @@ const parseArgs = require("minimist");
const Cpx = require("cpx"); const Cpx = require("cpx");
const chokidar = require("chokidar"); const chokidar = require("chokidar");
const fs = require("fs"); const fs = require("fs");
const _ = require("lodash");
const argv = parseArgs(process.argv.slice(2), {}); const argv = parseArgs(process.argv.slice(2), {});
@ -155,11 +156,11 @@ function genLangFile(lang, dest) {
const reactSdkFile = "node_modules/matrix-react-sdk/src/i18n/strings/" + lang + ".json"; const reactSdkFile = "node_modules/matrix-react-sdk/src/i18n/strings/" + lang + ".json";
const riotWebFile = "src/i18n/strings/" + lang + ".json"; const riotWebFile = "src/i18n/strings/" + lang + ".json";
const translations = {}; let translations = {};
[reactSdkFile, riotWebFile].forEach(function (f) { [reactSdkFile, riotWebFile].forEach(function (f) {
if (fs.existsSync(f)) { if (fs.existsSync(f)) {
try { try {
Object.assign(translations, JSON.parse(fs.readFileSync(f).toString())); translations = _.merge(translations, JSON.parse(fs.readFileSync(f).toString()));
} catch (e) { } catch (e) {
console.error("Failed: " + f, e); console.error("Failed: " + f, e);
throw e; throw e;

View File

@ -92,7 +92,7 @@ const CompatibilityView: React.FC<IProps> = ({ onAccept }) => {
android = []; android = [];
} }
let mobileHeader: ReactNode = <h2 id="step2_heading">{_t("Use %(brand)s on mobile", { brand })}</h2>; let mobileHeader: ReactNode = <h2 id="step2_heading">{_t("use_brand_on_mobile", { brand })}</h2>;
if (!android.length && !ios) { if (!android.length && !ios) {
mobileHeader = null; mobileHeader = null;
} }
@ -104,22 +104,17 @@ const CompatibilityView: React.FC<IProps> = ({ onAccept }) => {
<span className="mx_HomePage_logo"> <span className="mx_HomePage_logo">
<img height="42" src="themes/element/img/logos/element-logo.svg" alt="Element" /> <img height="42" src="themes/element/img/logos/element-logo.svg" alt="Element" />
</span> </span>
<h1>{_t("Unsupported browser")}</h1> <h1>{_t("incompatible_browser|title")}</h1>
</div> </div>
<div className="mx_HomePage_col"> <div className="mx_HomePage_col">
<div className="mx_HomePage_row"> <div className="mx_HomePage_row">
<div> <div>
<h2 id="step1_heading">{_t("Your browser can't run %(brand)s", { brand })}</h2> <h2 id="step1_heading">{_t("incompatible_browser|summary", { brand })}</h2>
<p>{_t("incompatible_browser|features", { brand })}</p>
<p> <p>
{_t( {_t(
"%(brand)s uses advanced browser features which aren't supported by your current browser.", "incompatible_browser|browser_links",
{ brand },
)}
</p>
<p>
{_t(
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.",
{}, {},
{ {
chromeLink: (sub) => <a href="https://www.google.com/chrome">{sub}</a>, chromeLink: (sub) => <a href="https://www.google.com/chrome">{sub}</a>,
@ -128,12 +123,8 @@ const CompatibilityView: React.FC<IProps> = ({ onAccept }) => {
}, },
)} )}
</p> </p>
<p> <p>{_t("incompatible_browser|feature_warning")}</p>
{_t( <button onClick={onAccept}>{_t("incompatible_browser|continue_warning")}</button>
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.",
)}
</p>
<button onClick={onAccept}>{_t("I understand the risks and wish to continue")}</button>
</div> </div>
</div> </div>
</div> </div>
@ -151,7 +142,7 @@ const CompatibilityView: React.FC<IProps> = ({ onAccept }) => {
<div className="mx_HomePage_row mx_Center mx_Spacer"> <div className="mx_HomePage_row mx_Center mx_Spacer">
<p className="mx_Spacer"> <p className="mx_Spacer">
<a href="https://element.io" target="_blank" className="mx_FooterLink"> <a href="https://element.io" target="_blank" className="mx_FooterLink">
{_t("Go to element.io")} {_t("go_to_element_io")}
</a> </a>
</p> </p>
</div> </div>

View File

@ -36,7 +36,7 @@ const ErrorView: React.FC<IProps> = ({ title, messages }) => {
<span className="mx_HomePage_logo"> <span className="mx_HomePage_logo">
<img height="42" src="themes/element/img/logos/element-logo.svg" alt="Element" /> <img height="42" src="themes/element/img/logos/element-logo.svg" alt="Element" />
</span> </span>
<h1>{_t("Failed to start")}</h1> <h1>{_t("failed_to_start")}</h1>
</div> </div>
<div className="mx_HomePage_col"> <div className="mx_HomePage_col">
<div className="mx_HomePage_row"> <div className="mx_HomePage_row">
@ -49,7 +49,7 @@ const ErrorView: React.FC<IProps> = ({ title, messages }) => {
<div className="mx_HomePage_row mx_Center mx_Spacer"> <div className="mx_HomePage_row mx_Center mx_Spacer">
<p className="mx_Spacer"> <p className="mx_Spacer">
<a href="https://element.io" target="_blank" className="mx_FooterLink"> <a href="https://element.io" target="_blank" className="mx_FooterLink">
{_t("Go to element.io")} {_t("go_to_element_io")}
</a> </a>
</p> </p>
</div> </div>

View File

@ -41,7 +41,7 @@ const VectorAuthFooter = (): ReactElement => {
<footer className="mx_AuthFooter" role="contentinfo"> <footer className="mx_AuthFooter" role="contentinfo">
{authFooterLinks} {authFooterLinks}
<a href="https://matrix.org" target="_blank" rel="noreferrer noopener"> <a href="https://matrix.org" target="_blank" rel="noreferrer noopener">
{_t("Powered by Matrix")} {_t("powered_by_matrix")}
</a> </a>
</footer> </footer>
); );

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "أهمِل", "action": {
"Unknown device": "جهاز مجهول", "dismiss": "أهمِل",
"Welcome to Element": "مرحبًا بك في Element", "open": "افتح"
"Create Account": "أنشِئ حسابًا", },
"Explore rooms": "استكشِف الغرف", "auth": {
"Sign In": "لِج", "sso_complete_in_browser_dialog_title": "افتح المتصفح لإكمال الولوج"
"Invalid configuration: no default server specified.": "الضبط غير صالح: لم تحدّد خادومًا مبدئيًا.", },
"Your Element is misconfigured": "لم يُضبط تطبيق Element كما ينبغي", "desktop_default_device_name": "%(brand)s سطح المكتب %(platformName)s",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "يحتوي ضبط تطبيق Element على تنسيق JSON غير صالح. من فضلك صحّح المشكلة وأعِد تحميل الصفحة.", "download_completed": "اكتمل التنزيل",
"The message from the parser is: %(message)s": "الرسالة القادمة من المحلّل: %(message)s", "error": {
"Invalid JSON": "تنسيق JSON غير صالح", "app_launch_unexpected_error": "حدث عُطل غير متوقع أثناء تجهيز التطبيق. طالِع المِعراض للتفاصيل.",
"Unable to load config file: please refresh the page to try again.": "تعذّر تحميل ملف الضبط: من فضلك أنعِش الصفحة لمعاودة المحاولة.", "cannot_load_config": "تعذّر تحميل ملف الضبط: من فضلك أنعِش الصفحة لمعاودة المحاولة.",
"Unexpected error preparing the app. See console for details.": "حدث عُطل غير متوقع أثناء تجهيز التطبيق. طالِع المِعراض للتفاصيل.", "invalid_configuration_no_server": "الضبط غير صالح: لم تحدّد خادومًا مبدئيًا.",
"Download Completed": "اكتمل التنزيل", "invalid_json": "يحتوي ضبط تطبيق Element على تنسيق JSON غير صالح. من فضلك صحّح المشكلة وأعِد تحميل الصفحة.",
"Open": "افتح", "invalid_json_detail": "الرسالة القادمة من المحلّل: %(message)s",
"Go to your browser to complete Sign In": "افتح المتصفح لإكمال الولوج", "invalid_json_generic": "تنسيق JSON غير صالح",
"Unsupported browser": "متصفح غير مدعوم", "misconfigured": "لم يُضبط تطبيق Element كما ينبغي"
"Your browser can't run %(brand)s": "لا يمكن لمتصفحك تشغيل %(brand)s", },
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "يستعمل %(brand)s ميزات متقدمة في المتصفحات لا يدعمها متصفحك الحالي.", "failed_to_start": "فشل البدء",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "من فضلك ثبّت <chromeLink>كروم</chromeLink> أو <firefoxLink>فَيَرفُكس</firefoxLink> أو <safariLink>سفاري</safariLink> لأفضل تجربة.", "go_to_element_io": "انتقل إلى element.io",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "يمكنك مواصل استعمال متصفحك الحالي ولكن قد لا تعمل بعض المزايا (أو كلها) وقد لا يظهر التطبيق كما ينبغي له أن يظهر.", "incompatible_browser": {
"I understand the risks and wish to continue": "أفهم المخاطرة وأود المواصلة", "browser_links": "من فضلك ثبّت <chromeLink>كروم</chromeLink> أو <firefoxLink>فَيَرفُكس</firefoxLink> أو <safariLink>سفاري</safariLink> لأفضل تجربة.",
"Go to element.io": "انتقل إلى element.io", "continue_warning": "أفهم المخاطرة وأود المواصلة",
"Failed to start": "فشل البدء", "feature_warning": "يمكنك مواصل استعمال متصفحك الحالي ولكن قد لا تعمل بعض المزايا (أو كلها) وقد لا يظهر التطبيق كما ينبغي له أن يظهر.",
"Powered by Matrix": "تدعمه «ماترِكس»", "features": "يستعمل %(brand)s ميزات متقدمة في المتصفحات لا يدعمها متصفحك الحالي.",
"Use %(brand)s on mobile": "استعمل %(brand)s على المحمول", "summary": "لا يمكن لمتصفحك تشغيل %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "محادثة لامركزية، مشفرة &amp; تعمل بواسطة $matrixLogo", "title": "متصفح غير مدعوم"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s في %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s سطح المكتب %(platformName)s" "powered_by_matrix": "تدعمه «ماترِكس»",
"powered_by_matrix_with_logo": "محادثة لامركزية، مشفرة &amp; تعمل بواسطة $matrixLogo",
"unknown_device": "جهاز مجهول",
"use_brand_on_mobile": "استعمل %(brand)s على المحمول",
"web_default_device_name": "%(appName)s: %(browserName)s في %(osName)s",
"welcome_to_element": "مرحبًا بك في Element"
} }

View File

@ -1,29 +1,34 @@
{ {
"Unknown device": "Naməlum qurğu", "action": {
"Invalid JSON": "Yanlış JSON", "dismiss": "Nəzərə almayın",
"Sign In": "Daxil ol", "open": "Aç"
"Create Account": "Hesab Aç", },
"Explore rooms": "Otaqları kəşf edin", "auth": {
"Unexpected error preparing the app. See console for details.": "Tətbiqin başladılmasında gözlənilməz xəta.Təfərrüatlar üçün konsola baxın.", "sso_complete_in_browser_dialog_title": "Girişi tamamlamaq üçün brauzerinizə keçin"
"Invalid configuration: no default server specified.": "Yanlış konfiqurasiya: standart server göstərilməyib.", },
"The message from the parser is: %(message)s": "Sözügedən mesaj: %(message)s", "download_completed": "Yükləmə Tamamlandı",
"Dismiss": "Nəzərə almayın", "error": {
"Welcome to Element": "Element-ə xoş gəlmişsiniz", "app_launch_unexpected_error": "Tətbiqin başladılmasında gözlənilməz xəta.Təfərrüatlar üçün konsola baxın.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "$matrixLogo tərəfindən dəstəklənən mərkəzləşdirilməmiş ,şifrələnmiş söhbət &amp; əməkdaşlıq", "cannot_load_config": "Konfiqurasiya faylını yükləmək mümkün deyil: yenidən cəhd etmək üçün səhifəni yeniləyin.",
"Failed to start": "Başlatmaq alınmadı", "invalid_configuration_no_server": "Yanlış konfiqurasiya: standart server göstərilməyib.",
"Go to element.io": "element.io saytına keçin", "invalid_json": "Element konfiqurasiyanızda yanlış JSON var. Problemi düzəldin və səhifəni yenidən yükləyin.",
"I understand the risks and wish to continue": "Mən riskləri başa düşürəm və davam etmək istəyirəm", "invalid_json_detail": "Sözügedən mesaj: %(message)s",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Siz cari brauzerinizdən istifadə etməyə davam edə bilərsiniz, lakin bəzi və ya bütün funksiyalar işləməyə və tətbiqin görünüşü yanlış ola bilər.", "invalid_json_generic": "Yanlış JSON",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Zəhmət olmasa quraşdırın<chromeLink> Chrome</chromeLink> ,<firefoxLink> Firefox</firefoxLink> , və ya<safariLink> Safari</safariLink> ən yaxşı təcrübə üçün.", "misconfigured": "Elementi yanlış konfiqurasiya edibsiniz"
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s cari brauzeriniz tərəfindən dəstəklənməyən təkmil brauzer funksiyalarından istifadə edir.", },
"Your browser can't run %(brand)s": "Brauzeriniz %(brand)s işlədə bilmir", "failed_to_start": "Başlatmaq alınmadı",
"Unsupported browser": "Dəstəklənməyən brauzer", "go_to_element_io": "element.io saytına keçin",
"Use %(brand)s on mobile": "Mobil telefonda %(brand)s istifadə edin", "incompatible_browser": {
"Powered by Matrix": "Gücünü Matrix'dən alır", "browser_links": "Zəhmət olmasa quraşdırın<chromeLink> Chrome</chromeLink> ,<firefoxLink> Firefox</firefoxLink> , və ya<safariLink> Safari</safariLink> ən yaxşı təcrübə üçün.",
"Go to your browser to complete Sign In": "Girişi tamamlamaq üçün brauzerinizə keçin", "continue_warning": "Mən riskləri başa düşürəm və davam etmək istəyirəm",
"Open": "Aç", "feature_warning": "Siz cari brauzerinizdən istifadə etməyə davam edə bilərsiniz, lakin bəzi və ya bütün funksiyalar işləməyə və tətbiqin görünüşü yanlış ola bilər.",
"Download Completed": "Yükləmə Tamamlandı", "features": "%(brand)s cari brauzeriniz tərəfindən dəstəklənməyən təkmil brauzer funksiyalarından istifadə edir.",
"Unable to load config file: please refresh the page to try again.": "Konfiqurasiya faylını yükləmək mümkün deyil: yenidən cəhd etmək üçün səhifəni yeniləyin.", "summary": "Brauzeriniz %(brand)s işlədə bilmir",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Element konfiqurasiyanızda yanlış JSON var. Problemi düzəldin və səhifəni yenidən yükləyin.", "title": "Dəstəklənməyən brauzer"
"Your Element is misconfigured": "Elementi yanlış konfiqurasiya edibsiniz" },
"powered_by_matrix": "Gücünü Matrix'dən alır",
"powered_by_matrix_with_logo": "$matrixLogo tərəfindən dəstəklənən mərkəzləşdirilməmiş ,şifrələnmiş söhbət &amp; əməkdaşlıq",
"unknown_device": "Naməlum qurğu",
"use_brand_on_mobile": "Mobil telefonda %(brand)s istifadə edin",
"welcome_to_element": "Element-ə xoş gəlmişsiniz"
} }

View File

@ -1 +0,0 @@
{}

View File

@ -1,3 +1,5 @@
{ {
"Dismiss": "Aдхіліць" "action": {
"dismiss": "Aдхіліць"
}
} }

View File

@ -1,31 +1,35 @@
{ {
"Unknown device": "Непознато устройство", "action": {
"Dismiss": "Затвори", "dismiss": "Затвори",
"Welcome to Element": "Добре дошли в Element", "open": "Отвори"
"Sign In": "Вписване", },
"Create Account": "Създай профил", "auth": {
"Explore rooms": "Открий стаи", "sso_complete_in_browser_dialog_title": "Отидете в браузъра за да завършите влизането"
"Unexpected error preparing the app. See console for details.": "Неочаквана грешка при подготвянето на приложението. Вижте конзолата за подробности.", },
"Invalid configuration: no default server specified.": "Невалидна конфигурация: не е указан сървър по подразбиране.", "download_completed": "Свалянето завърши",
"The message from the parser is: %(message)s": "Грешката от парсъра е: %(message)s", "error": {
"Invalid JSON": "Невалиден JSON", "app_launch_unexpected_error": "Неочаквана грешка при подготвянето на приложението. Вижте конзолата за подробности.",
"Go to your browser to complete Sign In": "Отидете в браузъра за да завършите влизането", "cannot_load_config": "Неуспешно зареждане на конфигурационния файл: презаредете страницата за да опитате пак.",
"Unable to load config file: please refresh the page to try again.": "Неуспешно зареждане на конфигурационния файл: презаредете страницата за да опитате пак.", "invalid_configuration_no_server": "Невалидна конфигурация: не е указан сървър по подразбиране.",
"Unsupported browser": "Неподдържан браузър", "invalid_json": "Вашата Element конфигурация съдържа невалиден JSON. Коригирайте проблема и презаредете страницата.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Инсталирайте <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> или <safariLink>Safari</safariLink> за най-добра работа.", "invalid_json_detail": "Грешката от парсъра е: %(message)s",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Може да продължите да използвате сегашния си браузър, но някои или всички функции може да се окажат неработещи, или пък външния вид на приложението да изглежда неправилен.", "invalid_json_generic": "Невалиден JSON",
"I understand the risks and wish to continue": "Разбирам рисковете и желая да продължа", "misconfigured": "Вашият Element не е конфигуриран правилно"
"Go to element.io": "Отиди на element.io", },
"Failed to start": "Неуспешно стартиране", "failed_to_start": "Неуспешно стартиране",
"Your Element is misconfigured": "Вашият Element не е конфигуриран правилно", "go_to_element_io": "Отиди на element.io",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Вашата Element конфигурация съдържа невалиден JSON. Коригирайте проблема и презаредете страницата.", "incompatible_browser": {
"Download Completed": "Свалянето завърши", "browser_links": "Инсталирайте <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> или <safariLink>Safari</safariLink> за най-добра работа.",
"Open": "Отвори", "continue_warning": "Разбирам рисковете и желая да продължа",
"Your browser can't run %(brand)s": "Браузърът ви не може да изпълни %(brand)s", "feature_warning": "Може да продължите да използвате сегашния си браузър, но някои или всички функции може да се окажат неработещи, или пък външния вид на приложението да изглежда неправилен.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s използва модерни функции на браузъра, които не се поддържат от Вашия.", "features": "%(brand)s използва модерни функции на браузъра, които не се поддържат от Вашия.",
"Powered by Matrix": "Базирано на Matrix", "summary": "Браузърът ви не може да изпълни %(brand)s",
"Use %(brand)s on mobile": "Използвайте %(brand)s на мобилен телефон", "title": "Неподдържан браузър"
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Децентрализиран, криптиран чат &amp; сътрудничество, захранено от $matrixlogo", },
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s под %(osName)s", "powered_by_matrix": "Базирано на Matrix",
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s" "powered_by_matrix_with_logo": "Децентрализиран, криптиран чат &amp; сътрудничество, захранено от $matrixlogo",
"unknown_device": "Непознато устройство",
"use_brand_on_mobile": "Използвайте %(brand)s на мобилен телефон",
"web_default_device_name": "%(appName)s: %(browserName)s под %(osName)s",
"welcome_to_element": "Добре дошли в Element"
} }

View File

@ -1,4 +1,6 @@
{ {
"Dismiss": "সরাও", "action": {
"Open": "খোলা" "dismiss": "সরাও",
"open": "খোলা"
}
} }

View File

@ -1,4 +1,6 @@
{ {
"Your Element is misconfigured": "আপনার এলিমেন্ট টি ভুল ভাবে কনফিগার করা হয়েছে", "error": {
"Invalid configuration: no default server specified.": "ভুল কনফিগারেশনঃ কোনো মূল সার্ভার উল্লেখ করা হয়নি।" "invalid_configuration_no_server": "ভুল কনফিগারেশনঃ কোনো মূল সার্ভার উল্লেখ করা হয়নি।",
"misconfigured": "আপনার এলিমেন্ট টি ভুল ভাবে কনফিগার করা হয়েছে"
}
} }

View File

@ -1,3 +1,5 @@
{ {
"Open": "Digeriñ" "action": {
"open": "Digeriñ"
}
} }

View File

@ -1,28 +1,33 @@
{ {
"Invalid configuration: no default server specified.": "Neispravna konfiguracija: nije naveden zadani server.", "action": {
"Your Element is misconfigured": "Vaš element je pogrešno konfiguriran", "dismiss": "Odbaci",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Konfiguracija vašeg elementa sadrži nevažeći JSON. Ispravite problem i ponovo učitajte stranicu.", "open": "Otvori"
"The message from the parser is: %(message)s": "Poruka parsera je: %(message)s", },
"Invalid JSON": "Nevažeći JSON", "auth": {
"Unable to load config file: please refresh the page to try again.": "Nije moguće učitati konfiguracijsku datoteku: osvježite stranicu i pokušajte ponovo.", "sso_complete_in_browser_dialog_title": "Idite na svoj pretraživač da biste dovršili prijavu"
"Unexpected error preparing the app. See console for details.": "Neočekivana greška prilikom pripreme aplikacije. Pogledajte konzolu za detalje.", },
"Download Completed": "Preuzimanje završeno", "download_completed": "Preuzimanje završeno",
"Open": "Otvori", "error": {
"Dismiss": "Odbaci", "app_launch_unexpected_error": "Neočekivana greška prilikom pripreme aplikacije. Pogledajte konzolu za detalje.",
"Go to your browser to complete Sign In": "Idite na svoj pretraživač da biste dovršili prijavu", "cannot_load_config": "Nije moguće učitati konfiguracijsku datoteku: osvježite stranicu i pokušajte ponovo.",
"Unknown device": "Nepoznat uređaj", "invalid_configuration_no_server": "Neispravna konfiguracija: nije naveden zadani server.",
"Powered by Matrix": "Pokretano uz Matrix", "invalid_json": "Konfiguracija vašeg elementa sadrži nevažeći JSON. Ispravite problem i ponovo učitajte stranicu.",
"Unsupported browser": "Nepodržani pretraživač", "invalid_json_detail": "Poruka parsera je: %(message)s",
"Your browser can't run %(brand)s": "Vaš pretraživač ne može pokretati %(brand)s", "invalid_json_generic": "Nevažeći JSON",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s koristi napredne funkcije pretraživača koje vaš trenutni pretraživač ne podržava.", "misconfigured": "Vaš element je pogrešno konfiguriran"
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Molimo instalirajte <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ili <safariLink>Safari</safariLink> za najbolje iskustvo.", },
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Možete nastaviti koristiti svoj trenutni pretraživač, ali neke ili sve funkcije možda neće raditi, a izgled i dojam aplikacije mogu biti neispravani.", "failed_to_start": "Pokretanje nije uspjelo",
"I understand the risks and wish to continue": "Razumijem rizike i želim nastaviti", "go_to_element_io": "Idite na element.io",
"Go to element.io": "Idite na element.io", "incompatible_browser": {
"Failed to start": "Pokretanje nije uspjelo", "browser_links": "Molimo instalirajte <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ili <safariLink>Safari</safariLink> za najbolje iskustvo.",
"Welcome to Element": "Dobrodošli u Element", "continue_warning": "Razumijem rizike i želim nastaviti",
"Sign In": "Prijavite se", "feature_warning": "Možete nastaviti koristiti svoj trenutni pretraživač, ali neke ili sve funkcije možda neće raditi, a izgled i dojam aplikacije mogu biti neispravani.",
"Create Account": "Otvori račun", "features": "%(brand)s koristi napredne funkcije pretraživača koje vaš trenutni pretraživač ne podržava.",
"Explore rooms": "Istražite sobe", "summary": "Vaš pretraživač ne može pokretati %(brand)s",
"Use %(brand)s on mobile": "Koristi %(brand)s na mobitelu" "title": "Nepodržani pretraživač"
},
"powered_by_matrix": "Pokretano uz Matrix",
"unknown_device": "Nepoznat uređaj",
"use_brand_on_mobile": "Koristi %(brand)s na mobitelu",
"welcome_to_element": "Dobrodošli u Element"
} }

View File

@ -1,28 +1,33 @@
{ {
"Dismiss": "Omet", "action": {
"Unknown device": "Dispositiu desconegut", "dismiss": "Omet",
"Welcome to Element": "Benvingut/da a Element", "open": "Obre"
"Create Account": "Crea un compte", },
"Explore rooms": "Explora sales", "auth": {
"Sign In": "Inicia sessió", "sso_complete_in_browser_dialog_title": "Vés al navegador per completar l'inici de sessió"
"Invalid configuration: no default server specified.": "Configuració invàlida: no s'ha especificat cap servidor predeterminat.", },
"Invalid JSON": "JSON invàlid", "download_completed": "Baixada completada",
"Go to your browser to complete Sign In": "Vés al navegador per completar l'inici de sessió", "error": {
"Your Element is misconfigured": "Element està mal configurat", "app_launch_unexpected_error": "Error inesperat durant la preparació de l'aplicació. Consulta la consola pels a més detalls.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "La configuració d'Element conté un JSON invàlid. Soluciona el problema i actualitza la pàgina.", "cannot_load_config": "No s'ha pogut carregar el fitxer de configuració: actualitza la pàgina per tornar-ho a provar.",
"The message from the parser is: %(message)s": "El missatge de l'analitzador és: %(message)s", "invalid_configuration_no_server": "Configuració invàlida: no s'ha especificat cap servidor predeterminat.",
"Unable to load config file: please refresh the page to try again.": "No s'ha pogut carregar el fitxer de configuració: actualitza la pàgina per tornar-ho a provar.", "invalid_json": "La configuració d'Element conté un JSON invàlid. Soluciona el problema i actualitza la pàgina.",
"Unexpected error preparing the app. See console for details.": "Error inesperat durant la preparació de l'aplicació. Consulta la consola pels a més detalls.", "invalid_json_detail": "El missatge de l'analitzador és: %(message)s",
"Download Completed": "Baixada completada", "invalid_json_generic": "JSON invàlid",
"Open": "Obre", "misconfigured": "Element està mal configurat"
"Powered by Matrix": "Amb tecnologia de Matrix", },
"Unsupported browser": "Navegador no compatible", "failed_to_start": "Ha fallat l'inici",
"Your browser can't run %(brand)s": "El teu navegador no pot executar %(brand)s", "go_to_element_io": "Vés a element.io",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s utilitza funcions del navegador avançades que no són compatibles amb el teu navegador actual.", "incompatible_browser": {
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Instal·la <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> per obtenir la millor experiència.", "browser_links": "Instal·la <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> per obtenir la millor experiència.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Pots continuar utilitzant el teu navegador actual, però algunes o totes les funcions podrien no funcionar i l'aspecte de l'aplicació podria ser incorrecte.", "continue_warning": "Entenc els riscos i vull continuar",
"I understand the risks and wish to continue": "Entenc els riscos i vull continuar", "feature_warning": "Pots continuar utilitzant el teu navegador actual, però algunes o totes les funcions podrien no funcionar i l'aspecte de l'aplicació podria ser incorrecte.",
"Go to element.io": "Vés a element.io", "features": "%(brand)s utilitza funcions del navegador avançades que no són compatibles amb el teu navegador actual.",
"Failed to start": "Ha fallat l'inici", "summary": "El teu navegador no pot executar %(brand)s",
"Use %(brand)s on mobile": "Utilitza %(brand)s al mòbil" "title": "Navegador no compatible"
},
"powered_by_matrix": "Amb tecnologia de Matrix",
"unknown_device": "Dispositiu desconegut",
"use_brand_on_mobile": "Utilitza %(brand)s al mòbil",
"welcome_to_element": "Benvingut/da a Element"
} }

View File

@ -1,32 +1,36 @@
{ {
"Welcome to Element": "Vítá vás Element", "action": {
"Unknown device": "Neznámé zařízení", "dismiss": "Zavřít",
"Dismiss": "Zavřít", "open": "Otevřít"
"Sign In": "Přihlásit se", },
"Create Account": "Vytvořit účet", "auth": {
"Explore rooms": "Procházet místnosti", "sso_complete_in_browser_dialog_title": "Přejděte do prohlížeče a dokončete přihlášení"
"The message from the parser is: %(message)s": "Zpráva z parseru je: %(message)s", },
"Invalid JSON": "Neplatný JSON", "download_completed": "Stahování dokončeno",
"Unexpected error preparing the app. See console for details.": "Neočekávaná chyba při přípravě aplikace. Podrobnosti najdete v konzoli.", "error": {
"Invalid configuration: no default server specified.": "Neplatná konfigurace: není zadán výchozí server.", "app_launch_unexpected_error": "Neočekávaná chyba při přípravě aplikace. Podrobnosti najdete v konzoli.",
"Go to your browser to complete Sign In": "Přejděte do prohlížeče a dokončete přihlášení", "cannot_load_config": "Nepodařilo se načíst konfigurační soubor: abyste to zkusili znovu, načtěte prosím znovu stránku.",
"Your Element is misconfigured": "Váš Element je nesprávně nastaven", "invalid_configuration_mixed_server": "Neplatná konfigurace: default_hs_url nelze použít spolu s default_server_name nebo default_server_config",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Vaše konfigurace Elementu obsahuje nesprávná data JSON. Vyřešte prosím problém a načtěte znovu stránku.", "invalid_configuration_no_server": "Neplatná konfigurace: není zadán výchozí server.",
"Unable to load config file: please refresh the page to try again.": "Nepodařilo se načíst konfigurační soubor: abyste to zkusili znovu, načtěte prosím znovu stránku.", "invalid_json": "Vaše konfigurace Elementu obsahuje nesprávná data JSON. Vyřešte prosím problém a načtěte znovu stránku.",
"Download Completed": "Stahování dokončeno", "invalid_json_detail": "Zpráva z parseru je: %(message)s",
"Open": "Otevřít", "invalid_json_generic": "Neplatný JSON",
"Unsupported browser": "Nepodporovaný prohlížeč", "misconfigured": "Váš Element je nesprávně nastaven"
"Your browser can't run %(brand)s": "Váš prohlížeč nedokáže spustit %(brand)s", },
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s využívá pokročilých funkcí prohlížeče, které ten váš nepodporuje.", "failed_to_start": "Nepovedlo se nastartovat",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Pro nejlepší zážitek si prosím nainstalujte prohlížeč <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, nebo <safariLink>Safari</safariLink>.", "go_to_element_io": "Přejít na element.io",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Můžete pokračovat v užívání vašeho současného prohlížeče, ale některé (nebo dokonce všechny) funkce nemusí fungovat a vzhled a chování aplikace nemusí být správné.", "incompatible_browser": {
"I understand the risks and wish to continue": "Rozumím a přesto chci pokračovat", "browser_links": "Pro nejlepší zážitek si prosím nainstalujte prohlížeč <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, nebo <safariLink>Safari</safariLink>.",
"Go to element.io": "Přejít na element.io", "continue_warning": "Rozumím a přesto chci pokračovat",
"Failed to start": "Nepovedlo se nastartovat", "feature_warning": "Můžete pokračovat v užívání vašeho současného prohlížeče, ale některé (nebo dokonce všechny) funkce nemusí fungovat a vzhled a chování aplikace nemusí být správné.",
"Powered by Matrix": "Běží na Matrixu", "features": "%(brand)s využívá pokročilých funkcí prohlížeče, které ten váš nepodporuje.",
"Use %(brand)s on mobile": "Používání %(brand)s v mobilních zařízeních", "summary": "Váš prohlížeč nedokáže spustit %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentralizovaný, šifrovaný chat a spolupráce na platformě $matrixLogo", "title": "Nepodporovaný prohlížeč"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s na %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s", "powered_by_matrix": "Běží na Matrixu",
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Neplatná konfigurace: default_hs_url nelze použít spolu s default_server_name nebo default_server_config" "powered_by_matrix_with_logo": "Decentralizovaný, šifrovaný chat a spolupráce na platformě $matrixLogo",
"unknown_device": "Neznámé zařízení",
"use_brand_on_mobile": "Používání %(brand)s v mobilních zařízeních",
"web_default_device_name": "%(appName)s: %(browserName)s na %(osName)s",
"welcome_to_element": "Vítá vás Element"
} }

View File

@ -1,13 +1,16 @@
{ {
"The message from the parser is: %(message)s": "Y neges gan y dosrannudd yn: %(message)s", "action": {
"Invalid JSON": "JSON annilys", "dismiss": "Wfftio"
"Unexpected error preparing the app. See console for details.": "Gwall annisgwyl wrth baratoi'r app. Gweler y consol am fanylion.", },
"Invalid configuration: no default server specified.": "Gosodiad annilys: ni nodwyd gweinydd diofyn.", "auth": {
"Unknown device": "Dyfais anhysbys", "sso_complete_in_browser_dialog_title": "Ewch i'ch porwr i gwblhau Mewngofnodi"
"Dismiss": "Wfftio", },
"Welcome to Element": "Croeso i Element", "error": {
"Sign In": "Mewngofnodi", "app_launch_unexpected_error": "Gwall annisgwyl wrth baratoi'r app. Gweler y consol am fanylion.",
"Create Account": "Creu Cyfrif", "invalid_configuration_no_server": "Gosodiad annilys: ni nodwyd gweinydd diofyn.",
"Explore rooms": "Archwilio Ystafelloedd", "invalid_json_detail": "Y neges gan y dosrannudd yn: %(message)s",
"Go to your browser to complete Sign In": "Ewch i'ch porwr i gwblhau Mewngofnodi" "invalid_json_generic": "JSON annilys"
},
"unknown_device": "Dyfais anhysbys",
"welcome_to_element": "Croeso i Element"
} }

View File

@ -1,31 +1,35 @@
{ {
"Dismiss": "Afvis", "action": {
"Unknown device": "Ukendt enhed", "dismiss": "Afvis",
"Welcome to Element": "Velkommen til Element", "open": "Åbn"
"The message from the parser is: %(message)s": "Beskeden fra parseren er: %(message)s", },
"Invalid JSON": "Ugyldig JSON", "auth": {
"Unexpected error preparing the app. See console for details.": "Uventet fejl ved forberedelse af appen. Se konsollen for detaljer.", "sso_complete_in_browser_dialog_title": "Gå til din browser for at færdiggøre Log ind"
"Invalid configuration: no default server specified.": "Ugyldig konfiguration: Ingen standardserver er angivet.", },
"Sign In": "Log ind", "download_completed": "Hentning færdig",
"Create Account": "Opret brugerkonto", "error": {
"Explore rooms": "Udforsk rum", "app_launch_unexpected_error": "Uventet fejl ved forberedelse af appen. Se konsollen for detaljer.",
"Unable to load config file: please refresh the page to try again.": "Ikke i stand til at indlæse konfigurationsfil: Genopfrisk venligst siden for at prøve igen.", "cannot_load_config": "Ikke i stand til at indlæse konfigurationsfil: Genopfrisk venligst siden for at prøve igen.",
"Go to your browser to complete Sign In": "Gå til din browser for at færdiggøre Log ind", "invalid_configuration_no_server": "Ugyldig konfiguration: Ingen standardserver er angivet.",
"Go to element.io": "Gå til element.io", "invalid_json": "Din Element konfiguration indeholder ugyldig JSON. Løs venligst problemet og genindlæs siden.",
"I understand the risks and wish to continue": "Jeg forstår risikoen og ønsker at fortsætte", "invalid_json_detail": "Beskeden fra parseren er: %(message)s",
"Unsupported browser": "Browser ikke understøttet", "invalid_json_generic": "Ugyldig JSON",
"Open": "Åbn", "misconfigured": "Dit Element er konfigureret forkert"
"Download Completed": "Hentning færdig", },
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Din Element konfiguration indeholder ugyldig JSON. Løs venligst problemet og genindlæs siden.", "failed_to_start": "Opstart mislykkedes",
"Your Element is misconfigured": "Dit Element er konfigureret forkert", "go_to_element_io": "Gå til element.io",
"Your browser can't run %(brand)s": "Din browser kan ikke køre %(brand)s", "incompatible_browser": {
"Powered by Matrix": "Drevet af Matrix", "browser_links": "Venligst installer <chromeLink>Chrome</chromeLink>,<firefoxLink>Firefox</firefoxLink> eller <safariLink>Safari</safariLink> for den bedste oplevelse.",
"Failed to start": "Opstart mislykkedes", "continue_warning": "Jeg forstår risikoen og ønsker at fortsætte",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Du kan fortsætte med at bruge din nuværende browser, men du kan opleve at visse eller alle funktioner ikke vil fungere korrekt.", "feature_warning": "Du kan fortsætte med at bruge din nuværende browser, men du kan opleve at visse eller alle funktioner ikke vil fungere korrekt.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Venligst installer <chromeLink>Chrome</chromeLink>,<firefoxLink>Firefox</firefoxLink> eller <safariLink>Safari</safariLink> for den bedste oplevelse.", "features": "%(brand)s bruger avanceret browser funktioner som ikke er understøttet af din nuværende browser.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s bruger avanceret browser funktioner som ikke er understøttet af din nuværende browser.", "summary": "Din browser kan ikke køre %(brand)s",
"Use %(brand)s on mobile": "Brug %(brand)s på mobil", "title": "Browser ikke understøttet"
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentraliseret, krypteret chat &amp; samarbejde drevet af $matrixLogo", },
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s på %(osName)s", "powered_by_matrix": "Drevet af Matrix",
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s" "powered_by_matrix_with_logo": "Decentraliseret, krypteret chat &amp; samarbejde drevet af $matrixLogo",
"unknown_device": "Ukendt enhed",
"use_brand_on_mobile": "Brug %(brand)s på mobil",
"web_default_device_name": "%(appName)s: %(browserName)s på %(osName)s",
"welcome_to_element": "Velkommen til Element"
} }

View File

@ -1,32 +1,36 @@
{ {
"Dismiss": "Ausblenden", "action": {
"Unknown device": "Unbekanntes Gerät", "dismiss": "Ausblenden",
"Welcome to Element": "Willkommen bei Element", "open": "Öffnen"
"Sign In": "Anmelden", },
"Create Account": "Konto erstellen", "auth": {
"Explore rooms": "Räume erkunden", "sso_complete_in_browser_dialog_title": "Browser öffnen, um die Anmeldung abzuschließen"
"Unexpected error preparing the app. See console for details.": "Unerwarteter Fehler bei der Vorbereitung der App; mehr Details in der Konsole.", },
"Invalid configuration: no default server specified.": "Ungültige Konfiguration: Es wurde kein Standardserver angegeben.", "download_completed": "Herunterladen fertiggestellt",
"The message from the parser is: %(message)s": "Die Nachricht des Parsers ist: %(message)s", "error": {
"Invalid JSON": "Ungültiges JSON", "app_launch_unexpected_error": "Unerwarteter Fehler bei der Vorbereitung der App; mehr Details in der Konsole.",
"Go to your browser to complete Sign In": "Browser öffnen, um die Anmeldung abzuschließen", "cannot_load_config": "Konfigurationsdatei kann nicht geladen werden: Bitte aktualisiere die Seite, um es erneut zu versuchen.",
"Unable to load config file: please refresh the page to try again.": "Konfigurationsdatei kann nicht geladen werden: Bitte aktualisiere die Seite, um es erneut zu versuchen.", "invalid_configuration_mixed_server": "Ungültige Konfiguration: default_hs_url kann nicht zeitgleich mit default_server_name oder default_server_config festgelegt werden",
"Unsupported browser": "Nicht unterstützter Browser", "invalid_configuration_no_server": "Ungültige Konfiguration: Es wurde kein Standardserver angegeben.",
"Go to element.io": "Gehe zu element.io", "invalid_json": "Deine Element-Konfiguration enthält ungültiges JSON. Bitte korrigiere das Problem und lade die Seite neu.",
"Failed to start": "Start fehlgeschlagen", "invalid_json_detail": "Die Nachricht des Parsers ist: %(message)s",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Bitte installiere <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> oder <safariLink>Safari</safariLink> für das beste Erlebnis.", "invalid_json_generic": "Ungültiges JSON",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Du kannst deinen aktuellen Browser weiterhin verwenden. Es ist aber möglich, dass nicht alles richtig funktioniert oder das Aussehen der App inkorrekt ist.", "misconfigured": "Dein Element ist falsch konfiguriert"
"I understand the risks and wish to continue": "Ich verstehe die Risiken und möchte fortfahren", },
"Your Element is misconfigured": "Dein Element ist falsch konfiguriert", "failed_to_start": "Start fehlgeschlagen",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Deine Element-Konfiguration enthält ungültiges JSON. Bitte korrigiere das Problem und lade die Seite neu.", "go_to_element_io": "Gehe zu element.io",
"Download Completed": "Herunterladen fertiggestellt", "incompatible_browser": {
"Open": "Öffnen", "browser_links": "Bitte installiere <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> oder <safariLink>Safari</safariLink> für das beste Erlebnis.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s verwendet erweiterte Browserfunktionen, die von deinem Browser nicht unterstützt werden.", "continue_warning": "Ich verstehe die Risiken und möchte fortfahren",
"Your browser can't run %(brand)s": "Dein Browser kann %(brand)s nicht ausführen", "feature_warning": "Du kannst deinen aktuellen Browser weiterhin verwenden. Es ist aber möglich, dass nicht alles richtig funktioniert oder das Aussehen der App inkorrekt ist.",
"Powered by Matrix": "Betrieben mit Matrix", "features": "%(brand)s verwendet erweiterte Browserfunktionen, die von deinem Browser nicht unterstützt werden.",
"Use %(brand)s on mobile": "Verwende %(brand)s am Handy", "summary": "Dein Browser kann %(brand)s nicht ausführen",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Dezentralisierter, verschlüsselter Chat &amp; Zusammenarbeit unterstützt von $matrixLogo", "title": "Nicht unterstützter Browser"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s auf %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s", "powered_by_matrix": "Betrieben mit Matrix",
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Ungültige Konfiguration: default_hs_url kann nicht zeitgleich mit default_server_name oder default_server_config festgelegt werden" "powered_by_matrix_with_logo": "Dezentralisierter, verschlüsselter Chat &amp; Zusammenarbeit unterstützt von $matrixLogo",
"unknown_device": "Unbekanntes Gerät",
"use_brand_on_mobile": "Verwende %(brand)s am Handy",
"web_default_device_name": "%(appName)s: %(browserName)s auf %(osName)s",
"welcome_to_element": "Willkommen bei Element"
} }

View File

@ -1,29 +1,34 @@
{ {
"Dismiss": "Απόρριψη", "action": {
"Unknown device": "Άγνωστη συσκευή", "dismiss": "Απόρριψη",
"Welcome to Element": "Καλώς ήλθατε στο Element", "open": "Άνοιγμα"
"Sign In": "Σύνδεση", },
"Create Account": "Δημιουργία Λογαριασμού", "auth": {
"The message from the parser is: %(message)s": "Το μήνυμα από τον αναλυτή είναι: %(message)s", "sso_complete_in_browser_dialog_title": "Μεταβείτε στο πρόγραμμα περιήγησής σας για να ολοκληρώσετε τη σύνδεση"
"Invalid JSON": "Μη έγκυρο JSON", },
"Unexpected error preparing the app. See console for details.": "Απρόοπτο σφάλμα κατά την προετοιμασία της εφαρμογής. Δείτε το τερματικό για λεπτομέρειες.", "download_completed": "Η λήψη ολοκληρώθηκε",
"Invalid configuration: no default server specified.": "Μη έγκυρη ρύθμιση παραμέτρων: δεν έχει οριστεί προκαθορισμένος διακομιστής.", "error": {
"Explore rooms": "Εξερευνήστε δωμάτια", "app_launch_unexpected_error": "Απρόοπτο σφάλμα κατά την προετοιμασία της εφαρμογής. Δείτε το τερματικό για λεπτομέρειες.",
"Open": "Άνοιγμα", "cannot_load_config": "Δεν είναι δυνατή η φόρτωση του αρχείου config: ανανεώστε τη σελίδα για να δοκιμάσετε ξανά.",
"Go to your browser to complete Sign In": "Μεταβείτε στο πρόγραμμα περιήγησής σας για να ολοκληρώσετε τη σύνδεση", "invalid_configuration_no_server": "Μη έγκυρη ρύθμιση παραμέτρων: δεν έχει οριστεί προκαθορισμένος διακομιστής.",
"Powered by Matrix": "Με την υποστήριξη του Matrix", "invalid_json": "Η ρύθμιση του Element περιέχει μη έγκυρο JSON. Διορθώστε το πρόβλημα και φορτώστε ξανά τη σελίδα.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Παρακαλούμε εγκαταστήστε <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ή <safariLink>Safari</safariLink> για καλύτερη εμπειρία χρήσης.", "invalid_json_detail": "Το μήνυμα από τον αναλυτή είναι: %(message)s",
"Your Element is misconfigured": "Το Element σας δεν εχει ρυθμιστεί σωστά", "invalid_json_generic": "Μη έγκυρο JSON",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Η ρύθμιση του Element περιέχει μη έγκυρο JSON. Διορθώστε το πρόβλημα και φορτώστε ξανά τη σελίδα.", "misconfigured": "Το Element σας δεν εχει ρυθμιστεί σωστά"
"Unable to load config file: please refresh the page to try again.": "Δεν είναι δυνατή η φόρτωση του αρχείου config: ανανεώστε τη σελίδα για να δοκιμάσετε ξανά.", },
"Download Completed": "Η λήψη ολοκληρώθηκε", "failed_to_start": "Αποτυχία έναρξης",
"Unsupported browser": "Μη υποστηριζόμενο πρόγραμμα περιήγησης", "go_to_element_io": "Πήγαινε στο element.io",
"Your browser can't run %(brand)s": "Το πρόγραμμα περιήγησής σας δεν μπορεί να εκτελέσει %(brand)s", "incompatible_browser": {
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s χρησιμοποιεί προηγμένες δυνατότητες προγράμματος περιήγησης που δεν υποστηρίζονται από το τρέχον πρόγραμμα περιήγησής σας.", "browser_links": "Παρακαλούμε εγκαταστήστε <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ή <safariLink>Safari</safariLink> για καλύτερη εμπειρία χρήσης.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Μπορείτε να συνεχίσετε να χρησιμοποιείτε το τρέχον πρόγραμμα περιήγησής σας, αλλά ορισμένες ή όλες οι λειτουργίες ενδέχεται να μην λειτουργούν και η εμφάνιση και η αίσθηση της εφαρμογής ενδέχεται να είναι λανθασμένη.", "continue_warning": "Κατανοώ τους κινδύνους και επιθυμώ να συνεχίσω",
"I understand the risks and wish to continue": "Κατανοώ τους κινδύνους και επιθυμώ να συνεχίσω", "feature_warning": "Μπορείτε να συνεχίσετε να χρησιμοποιείτε το τρέχον πρόγραμμα περιήγησής σας, αλλά ορισμένες ή όλες οι λειτουργίες ενδέχεται να μην λειτουργούν και η εμφάνιση και η αίσθηση της εφαρμογής ενδέχεται να είναι λανθασμένη.",
"Go to element.io": "Πήγαινε στο element.io", "features": "%(brand)s χρησιμοποιεί προηγμένες δυνατότητες προγράμματος περιήγησης που δεν υποστηρίζονται από το τρέχον πρόγραμμα περιήγησής σας.",
"Failed to start": "Αποτυχία έναρξης", "summary": "Το πρόγραμμα περιήγησής σας δεν μπορεί να εκτελέσει %(brand)s",
"Use %(brand)s on mobile": "Χρήση %(brand)s σε κινητό", "title": "Μη υποστηριζόμενο πρόγραμμα περιήγησης"
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Αποκεντρωμένη, κρυπτογραφημένη συνομιλία και συνεργασία χρησιμοποιώντας το $matrixLogo" },
"powered_by_matrix": "Με την υποστήριξη του Matrix",
"powered_by_matrix_with_logo": "Αποκεντρωμένη, κρυπτογραφημένη συνομιλία και συνεργασία χρησιμοποιώντας το $matrixLogo",
"unknown_device": "Άγνωστη συσκευή",
"use_brand_on_mobile": "Χρήση %(brand)s σε κινητό",
"welcome_to_element": "Καλώς ήλθατε στο Element"
} }

View File

@ -1,32 +1,40 @@
{ {
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config", "action": {
"Invalid configuration: no default server specified.": "Invalid configuration: no default server specified.", "create_account": "Create Account",
"Your Element is misconfigured": "Your Element is misconfigured", "dismiss": "Dismiss",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Your Element configuration contains invalid JSON. Please correct the problem and reload the page.", "explore_rooms": "Explore rooms",
"The message from the parser is: %(message)s": "The message from the parser is: %(message)s", "open": "Open",
"Invalid JSON": "Invalid JSON", "sign_in": "Sign In"
"Unable to load config file: please refresh the page to try again.": "Unable to load config file: please refresh the page to try again.", },
"Unexpected error preparing the app. See console for details.": "Unexpected error preparing the app. See console for details.", "auth": {
"Download Completed": "Download Completed", "sso_complete_in_browser_dialog_title": "Go to your browser to complete Sign In"
"Open": "Open", },
"Dismiss": "Dismiss", "desktop_default_device_name": "%(brand)s Desktop: %(platformName)s",
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s", "download_completed": "Download Completed",
"Go to your browser to complete Sign In": "Go to your browser to complete Sign In", "error": {
"Unknown device": "Unknown device", "app_launch_unexpected_error": "Unexpected error preparing the app. See console for details.",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s on %(osName)s", "cannot_load_config": "Unable to load config file: please refresh the page to try again.",
"Powered by Matrix": "Powered by Matrix", "invalid_configuration_mixed_server": "Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config",
"Use %(brand)s on mobile": "Use %(brand)s on mobile", "invalid_configuration_no_server": "Invalid configuration: no default server specified.",
"Unsupported browser": "Unsupported browser", "invalid_json": "Your Element configuration contains invalid JSON. Please correct the problem and reload the page.",
"Your browser can't run %(brand)s": "Your browser can't run %(brand)s", "invalid_json_detail": "The message from the parser is: %(message)s",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s uses advanced browser features which aren't supported by your current browser.", "invalid_json_generic": "Invalid JSON",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.", "misconfigured": "Your Element is misconfigured"
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.", },
"I understand the risks and wish to continue": "I understand the risks and wish to continue", "failed_to_start": "Failed to start",
"Go to element.io": "Go to element.io", "go_to_element_io": "Go to element.io",
"Failed to start": "Failed to start", "incompatible_browser": {
"Welcome to Element": "Welcome to Element", "browser_links": "Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo", "continue_warning": "I understand the risks and wish to continue",
"Sign In": "Sign In", "feature_warning": "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.",
"Create Account": "Create Account", "features": "%(brand)s uses advanced browser features which aren't supported by your current browser.",
"Explore rooms": "Explore rooms" "summary": "Your browser can't run %(brand)s",
"title": "Unsupported browser"
},
"powered_by_matrix": "Powered by Matrix",
"powered_by_matrix_with_logo": "Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo",
"unknown_device": "Unknown device",
"use_brand_on_mobile": "Use %(brand)s on mobile",
"web_default_device_name": "%(appName)s: %(browserName)s on %(osName)s",
"welcome_to_element": "Welcome to Element"
} }

View File

@ -1,31 +1,41 @@
{ {
"Dismiss": "Dismiss", "error": {
"Unknown device": "Unknown device", "invalid_configuration_no_server": "Invalid configuration: no default server specified.",
"Welcome to Element": "Welcome to Element", "misconfigured": "Your Element is misconfigured",
"Sign In": "Sign In", "invalid_json": "Your Element configuration contains invalid JSON. Please correct the problem and reload the page.",
"Create Account": "Create Account", "invalid_json_detail": "The message from the parser is: %(message)s",
"Explore rooms": "Explore rooms", "invalid_json_generic": "Invalid JSON",
"The message from the parser is: %(message)s": "The message from the parser is: %(message)s", "cannot_load_config": "Unable to load config file: please refresh the page to try again.",
"Invalid JSON": "Invalid JSON", "app_launch_unexpected_error": "Unexpected error preparing the app. See console for details."
"Unexpected error preparing the app. See console for details.": "Unexpected error preparing the app. See console for details.", },
"Invalid configuration: no default server specified.": "Invalid configuration: no default server specified.", "download_completed": "Download Completed",
"Failed to start": "Failed to start", "action": {
"Go to element.io": "Go to element.io", "open": "Open",
"I understand the risks and wish to continue": "I understand the risks and wish to continue", "dismiss": "Dismiss"
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.", },
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.", "desktop_default_device_name": "%(brand)s Desktop: %(platformName)s",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s uses advanced browser features which aren't supported by your current browser.", "auth": {
"Your browser can't run %(brand)s": "Your browser can't run %(brand)s", "sso_complete_in_browser_dialog_title": "Go to your browser to complete Sign In"
"Unsupported browser": "Unsupported browser", },
"Powered by Matrix": "Powered by Matrix", "unknown_device": "Unknown device",
"Go to your browser to complete Sign In": "Go to your browser to complete Sign In", "web_default_device_name": "%(appName)s: %(browserName)s on %(osName)s",
"Open": "Open", "powered_by_matrix": "Powered by Matrix",
"Download Completed": "Download Completed", "use_brand_on_mobile": "Use %(brand)s on mobile",
"Unable to load config file: please refresh the page to try again.": "Unable to load config file: please refresh the page to try again.", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Your Element configuration contains invalid JSON. Please correct the problem and reload the page.", "title": "Unsupported browser",
"Your Element is misconfigured": "Your Element is misconfigured", "summary": "Your browser can't run %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo", "features": "%(brand)s uses advanced browser features which aren't supported by your current browser.",
"Use %(brand)s on mobile": "Use %(brand)s on mobile", "browser_links": "Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s on %(osName)s", "feature_warning": "You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.",
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s" "continue_warning": "I understand the risks and wish to continue"
},
"go_to_element_io": "Go to element.io",
"failed_to_start": "Failed to start",
"welcome_to_element": "Welcome to Element",
"powered_by_matrix_with_logo": "Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo",
"common": {
"sign_in": "Sign In",
"create_account": "Create Account",
"explore_rooms": "Explore rooms"
}
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "Rezigni", "action": {
"Unknown device": "Nekonata aparato", "dismiss": "Rezigni",
"Welcome to Element": "Bonvenon al Element", "open": "Malfermi"
"Sign In": "Ensaluti", },
"Create Account": "Krei konton", "auth": {
"Explore rooms": "Esplori ĉambrojn", "sso_complete_in_browser_dialog_title": "Iru al via retumilo por finpretigi la ensaluton"
"Unexpected error preparing the app. See console for details.": "Neatendita eraro okazis dum la preparado de la aplikaĵo. Rigardu la konzolon por detaloj.", },
"Invalid configuration: no default server specified.": "Nevalida agordo: neniu implicita servilo estas specifita.", "desktop_default_device_name": "%(brand)s Labortablo: %(platformName)s",
"The message from the parser is: %(message)s": "La mesaĝo el la analizilo estas: %(message)s", "download_completed": "Elŝuto finiĝis",
"Invalid JSON": "Nevalida JSON", "error": {
"Go to your browser to complete Sign In": "Iru al via retumilo por finpretigi la ensaluton", "app_launch_unexpected_error": "Neatendita eraro okazis dum la preparado de la aplikaĵo. Rigardu la konzolon por detaloj.",
"Unable to load config file: please refresh the page to try again.": "Ne povas enlegi agordan dosieron: bonvolu reprovi per aktualigo de la paĝo.", "cannot_load_config": "Ne povas enlegi agordan dosieron: bonvolu reprovi per aktualigo de la paĝo.",
"Unsupported browser": "Nesubtenata retumilo", "invalid_configuration_no_server": "Nevalida agordo: neniu implicita servilo estas specifita.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Bonvolu instali retumilon <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, aŭ <safariLink>Safari</safariLink>, por la plej bona sperto.", "invalid_json": "Via agordaro de Elemento enhavas nevalidajn datumojn de JSON. Bonvolu korekti la problemon kaj aktualigi la paĝon.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Vi povas daŭre uzi vian nunan foliumilon, sed iuj (eĉ ĉiuj) funkcioj eble ne funkciu, kaj la aspekto de la aplikaĵo eble ne estu ĝusta.", "invalid_json_detail": "La mesaĝo el la analizilo estas: %(message)s",
"I understand the risks and wish to continue": "Mi komprenas la riskon kaj volas pluiĝi", "invalid_json_generic": "Nevalida JSON",
"Go to element.io": "Iri al element.io", "misconfigured": "Via Elemento estas misagordita"
"Failed to start": "Malsukcesis starti", },
"Download Completed": "Elŝuto finiĝis", "failed_to_start": "Malsukcesis starti",
"Open": "Malfermi", "go_to_element_io": "Iri al element.io",
"Your Element is misconfigured": "Via Elemento estas misagordita", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Via agordaro de Elemento enhavas nevalidajn datumojn de JSON. Bonvolu korekti la problemon kaj aktualigi la paĝon.", "browser_links": "Bonvolu instali retumilon <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, aŭ <safariLink>Safari</safariLink>, por la plej bona sperto.",
"Your browser can't run %(brand)s": "Via retumilo ne povas ruli %(brand)s", "continue_warning": "Mi komprenas la riskon kaj volas pluiĝi",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s uzas specialajn funkciojn de retumilo, kiujn via nuna retumilo ne subtenas.", "feature_warning": "Vi povas daŭre uzi vian nunan foliumilon, sed iuj (eĉ ĉiuj) funkcioj eble ne funkciu, kaj la aspekto de la aplikaĵo eble ne estu ĝusta.",
"Powered by Matrix": "Povigata de Matrix", "features": "%(brand)s uzas specialajn funkciojn de retumilo, kiujn via nuna retumilo ne subtenas.",
"Use %(brand)s on mobile": "Uzi %(brand)s poŝtelefone", "summary": "Via retumilo ne povas ruli %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Malcentralizita kaj ĉifrita babilejo; kunlaboro danke al $matrixLogo", "title": "Nesubtenata retumilo"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s sur %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Labortablo: %(platformName)s" "powered_by_matrix": "Povigata de Matrix",
"powered_by_matrix_with_logo": "Malcentralizita kaj ĉifrita babilejo; kunlaboro danke al $matrixLogo",
"unknown_device": "Nekonata aparato",
"use_brand_on_mobile": "Uzi %(brand)s poŝtelefone",
"web_default_device_name": "%(appName)s: %(browserName)s sur %(osName)s",
"welcome_to_element": "Bonvenon al Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Unknown device": "Dispositivo desconocido", "action": {
"Dismiss": "Omitir", "dismiss": "Omitir",
"Welcome to Element": "Te damos la bienvenida a Element", "open": "Abrir"
"Sign In": "Iniciar sesión", },
"Create Account": "Crear cuenta", "auth": {
"Explore rooms": "Explorar salas", "sso_complete_in_browser_dialog_title": "Abre tu navegador web para completar el registro"
"Unexpected error preparing the app. See console for details.": "Error inesperado preparando la aplicación. Ver la consola para más detalles.", },
"Invalid configuration: no default server specified.": "Configuración errónea: no se ha especificado servidor.", "desktop_default_device_name": "%(brand)s de escritorio: %(platformName)s",
"The message from the parser is: %(message)s": "El mensaje del parser es: %(message)s", "download_completed": "Descarga completada",
"Invalid JSON": "JSON inválido", "error": {
"Go to your browser to complete Sign In": "Abre tu navegador web para completar el registro", "app_launch_unexpected_error": "Error inesperado preparando la aplicación. Ver la consola para más detalles.",
"Unable to load config file: please refresh the page to try again.": "No se ha podido cargar el archivo de configuración. Recarga la página para intentarlo otra vez.", "cannot_load_config": "No se ha podido cargar el archivo de configuración. Recarga la página para intentarlo otra vez.",
"Unsupported browser": "Navegador no compatible", "invalid_configuration_no_server": "Configuración errónea: no se ha especificado servidor.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Por favor, instale <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> para la mejor experiencia.", "invalid_json": "Tu configuración de Element contiene JSON inválido. Por favor corrígelo e inténtelo de nuevo.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Puedes seguir utilizando tu navegador actual, pero puede que algunas funcionalidades no estén disponibles o que algunas partes de la aplicación se muestren de forma incorrecta.", "invalid_json_detail": "El mensaje del parser es: %(message)s",
"I understand the risks and wish to continue": "Entiendo los riesgos y quiero continuar", "invalid_json_generic": "JSON inválido",
"Go to element.io": "Ir a element.io", "misconfigured": "Tu aplicación Element está mal configurada"
"Failed to start": "Fallo al iniciar", },
"Your Element is misconfigured": "Tu aplicación Element está mal configurada", "failed_to_start": "Fallo al iniciar",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Tu configuración de Element contiene JSON inválido. Por favor corrígelo e inténtelo de nuevo.", "go_to_element_io": "Ir a element.io",
"Download Completed": "Descarga completada", "incompatible_browser": {
"Open": "Abrir", "browser_links": "Por favor, instale <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> para la mejor experiencia.",
"Your browser can't run %(brand)s": "Tu navegador no es compatible con %(brand)s", "continue_warning": "Entiendo los riesgos y quiero continuar",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s usa funciones avanzadas que su navegador actual no soporta.", "feature_warning": "Puedes seguir utilizando tu navegador actual, pero puede que algunas funcionalidades no estén disponibles o que algunas partes de la aplicación se muestren de forma incorrecta.",
"Powered by Matrix": "Funciona con Matrix", "features": "%(brand)s usa funciones avanzadas que su navegador actual no soporta.",
"Use %(brand)s on mobile": "Usar %(brand)s en modo móvil", "summary": "Tu navegador no es compatible con %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Conversaciones y colaboración descentralizadas y cifradas gracias a $matrixLogo", "title": "Navegador no compatible"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s en %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s de escritorio: %(platformName)s" "powered_by_matrix": "Funciona con Matrix",
"powered_by_matrix_with_logo": "Conversaciones y colaboración descentralizadas y cifradas gracias a $matrixLogo",
"unknown_device": "Dispositivo desconocido",
"use_brand_on_mobile": "Usar %(brand)s en modo móvil",
"web_default_device_name": "%(appName)s: %(browserName)s en %(osName)s",
"welcome_to_element": "Te damos la bienvenida a Element"
} }

View File

@ -1,32 +1,36 @@
{ {
"The message from the parser is: %(message)s": "Sõnum parserist on: %(message)s", "action": {
"Invalid JSON": "Vigane JSON", "dismiss": "Loobu",
"Unknown device": "Tundmatu seade", "open": "Ava"
"Invalid configuration: no default server specified.": "Vigane seadistus: vaikimisi server on määramata.", },
"Unable to load config file: please refresh the page to try again.": "Seadistuste faili laadimine ei õnnestunud: uuesti proovimiseks palun laadi leht uuesti.", "auth": {
"Unexpected error preparing the app. See console for details.": "Rakenduse ettevalmistamisel tekkis ootamatu viga. Täpsema teabe leiad konsoolist.", "sso_complete_in_browser_dialog_title": "Sisselogimiseks ava oma brauser"
"Go to your browser to complete Sign In": "Sisselogimiseks ava oma brauser", },
"Dismiss": "Loobu", "download_completed": "Allalaadimine on lõpetatud",
"Explore rooms": "Tutvu jututubadega", "error": {
"Welcome to Element": "Tere tulemast kasutama suhtlusrakendust Element", "app_launch_unexpected_error": "Rakenduse ettevalmistamisel tekkis ootamatu viga. Täpsema teabe leiad konsoolist.",
"Sign In": "Logi sisse", "cannot_load_config": "Seadistuste faili laadimine ei õnnestunud: uuesti proovimiseks palun laadi leht uuesti.",
"Create Account": "Loo konto", "invalid_configuration_mixed_server": "Vigane seadistus: default_hs_url ei saa olla määratud koos default_server_name või default_server_config tunnustega",
"Unsupported browser": "Sellele brauserile puudub tugi", "invalid_configuration_no_server": "Vigane seadistus: vaikimisi server on määramata.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Parima kasutuskogemuse jaoks palun paigalda <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> või <safariLink>Safari</safariLink>.", "invalid_json": "Sinu Element'i seadistustes on vigased JSON-vormingus andmed. Palun paranda see viga ja laadi leht uuesti.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Sa võid jätkata praeguse brauseri kasutamist, kuid mõned või kõik funktsionaalsused ei pruugi toimida ning rakenduse välimus võib vigane olla.", "invalid_json_detail": "Sõnum parserist on: %(message)s",
"I understand the risks and wish to continue": "Ma mõistan riske ja soovin jätkata", "invalid_json_generic": "Vigane JSON",
"Go to element.io": "Mine element.io lehele", "misconfigured": "Sinu Element on valesti seadistatud"
"Failed to start": "Käivitamine ei õnnestunud", },
"Download Completed": "Allalaadimine on lõpetatud", "failed_to_start": "Käivitamine ei õnnestunud",
"Open": "Ava", "go_to_element_io": "Mine element.io lehele",
"Your Element is misconfigured": "Sinu Element on valesti seadistatud", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Sinu Element'i seadistustes on vigased JSON-vormingus andmed. Palun paranda see viga ja laadi leht uuesti.", "browser_links": "Parima kasutuskogemuse jaoks palun paigalda <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> või <safariLink>Safari</safariLink>.",
"Your browser can't run %(brand)s": "%(brand)s ei toimi sinu brauseris", "continue_warning": "Ma mõistan riske ja soovin jätkata",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s kasutab mitmeid uusi brauseri-põhiseid tehnoloogiaid, mis ei ole veel sinu veebibrauseris toetatud.", "feature_warning": "Sa võid jätkata praeguse brauseri kasutamist, kuid mõned või kõik funktsionaalsused ei pruugi toimida ning rakenduse välimus võib vigane olla.",
"Powered by Matrix": "Põhineb Matrix'il", "features": "%(brand)s kasutab mitmeid uusi brauseri-põhiseid tehnoloogiaid, mis ei ole veel sinu veebibrauseris toetatud.",
"Use %(brand)s on mobile": "Kasuta rakendust %(brand)s nutiseadmes", "summary": "%(brand)s ei toimi sinu brauseris",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Hajutatud ja krüpteeritud suhtlus- ning ühistöörakendus, mille aluseks on $matrixLogo", "title": "Sellele brauserile puudub tugi"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s operatsioonisüsteemis %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s", "powered_by_matrix": "Põhineb Matrix'il",
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Vigane seadistus: default_hs_url ei saa olla määratud koos default_server_name või default_server_config tunnustega" "powered_by_matrix_with_logo": "Hajutatud ja krüpteeritud suhtlus- ning ühistöörakendus, mille aluseks on $matrixLogo",
"unknown_device": "Tundmatu seade",
"use_brand_on_mobile": "Kasuta rakendust %(brand)s nutiseadmes",
"web_default_device_name": "%(appName)s: %(browserName)s operatsioonisüsteemis %(osName)s",
"welcome_to_element": "Tere tulemast kasutama suhtlusrakendust Element"
} }

View File

@ -1,27 +1,32 @@
{ {
"Dismiss": "Baztertu", "action": {
"Unknown device": "Gailu ezezaguna", "dismiss": "Baztertu",
"Welcome to Element": "Ongi etorri Element mezularitzara", "open": "Ireki"
"Sign In": "Hasi saioa", },
"Create Account": "Sortu kontua", "auth": {
"Explore rooms": "Arakatu gelak", "sso_complete_in_browser_dialog_title": "Joan zure nabigatzailera izena ematen bukatzeko"
"Unexpected error preparing the app. See console for details.": "Ustekabeko errorea aplikazioa prestatzean. Ikusi xehetasunak kontsolan.", },
"Invalid configuration: no default server specified.": "Konfigurazio baliogabea: Ez da lehenetsitako zerbitzaririk zehaztu.", "download_completed": "Deskarga burututa",
"The message from the parser is: %(message)s": "Prozesatzailearen mezua hau da: %(message)s", "error": {
"Invalid JSON": "JSON baliogabea", "app_launch_unexpected_error": "Ustekabeko errorea aplikazioa prestatzean. Ikusi xehetasunak kontsolan.",
"Go to your browser to complete Sign In": "Joan zure nabigatzailera izena ematen bukatzeko", "cannot_load_config": "Ezin izan da konfigurazio fitxategia kargatu: Saiatu orria birkargatzen.",
"Unable to load config file: please refresh the page to try again.": "Ezin izan da konfigurazio fitxategia kargatu: Saiatu orria birkargatzen.", "invalid_configuration_no_server": "Konfigurazio baliogabea: Ez da lehenetsitako zerbitzaririk zehaztu.",
"Unsupported browser": "Onartu gabeko nabigatzailea", "invalid_json": "Zure Element-en konfigurazioak JSON baliogabea dauka. Mesedez, konpondu arazoa eta birkargatu orria.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Instalatu <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, edo <safariLink>Safari</safariLink> esperientzia hobe baterako.", "invalid_json_detail": "Prozesatzailearen mezua hau da: %(message)s",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Zure oraingo nabigatzailea erabiltzen jarraitu dezakezu, baina ezaugarri batzuk agian ez dute funtzionatuko eta itxura desegokia izan daiteke.", "invalid_json_generic": "JSON baliogabea",
"I understand the risks and wish to continue": "Arriskuak ulertzen ditut eta jarraitu nahi dut", "misconfigured": "Zure Element ez dago ondo konfiguratuta"
"Go to element.io": "Joan element.io gunera", },
"Failed to start": "Huts egin du abiatzean", "failed_to_start": "Huts egin du abiatzean",
"Your Element is misconfigured": "Zure Element ez dago ondo konfiguratuta", "go_to_element_io": "Joan element.io gunera",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Zure Element-en konfigurazioak JSON baliogabea dauka. Mesedez, konpondu arazoa eta birkargatu orria.", "incompatible_browser": {
"Download Completed": "Deskarga burututa", "browser_links": "Instalatu <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, edo <safariLink>Safari</safariLink> esperientzia hobe baterako.",
"Open": "Ireki", "continue_warning": "Arriskuak ulertzen ditut eta jarraitu nahi dut",
"Your browser can't run %(brand)s": "Zure nabigatzaileak ezin du %(brand)s exekutatu", "feature_warning": "Zure oraingo nabigatzailea erabiltzen jarraitu dezakezu, baina ezaugarri batzuk agian ez dute funtzionatuko eta itxura desegokia izan daiteke.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s-(e)k zure oraingo nabigatzaile honek euskarririk ematen ez dien ezaugarri aurreratuak erabiltzen ditu.", "features": "%(brand)s-(e)k zure oraingo nabigatzaile honek euskarririk ematen ez dien ezaugarri aurreratuak erabiltzen ditu.",
"Powered by Matrix": "Matrixekin egina" "summary": "Zure nabigatzaileak ezin du %(brand)s exekutatu",
"title": "Onartu gabeko nabigatzailea"
},
"powered_by_matrix": "Matrixekin egina",
"unknown_device": "Gailu ezezaguna",
"welcome_to_element": "Ongi etorri Element mezularitzara"
} }

View File

@ -1,31 +1,36 @@
{ {
"Unknown device": "دستگاه ناشناخته", "action": {
"Welcome to Element": "به Element خوش‌آمدید", "dismiss": "نادیده بگیر",
"Dismiss": "نادیده بگیر", "open": "باز"
"Invalid JSON": "JSON اشتباه", },
"Go to your browser to complete Sign In": "برای تکمیل ورود به مرورگر خود بروید", "auth": {
"Sign In": "ورود", "sso_complete_in_browser_dialog_title": "برای تکمیل ورود به مرورگر خود بروید"
"Create Account": "ایجاد حساب کاربری", },
"Explore rooms": "جستجو در اتاق ها", "desktop_default_device_name": "%(brand)s دسکتاپ: %(platformName)s",
"Invalid configuration: no default server specified.": "پیکربندی نامعتبر: سرور پیشفرض مشخص نشده است.", "download_completed": "بارگیری کامل شد",
"Your Element is misconfigured": "Element شما پیکربندی نشده است", "error": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "پیکربندی المنت شما شامل JSON نا معتبر است. لطفا مشکل را اصلاح کنید و صفحه را بارگذاری مجدد کنید.", "app_launch_unexpected_error": "خطای غیر منتظره در آماده سازی برنامه. کنسول را برای جزئیات مشاهده کنید.",
"The message from the parser is: %(message)s": "پیام از طرف تجزیه کننده: %(message)s", "cannot_load_config": "قادر به بارگذاری فایل پیکربندی نیست: لطفا برای تلاش مجدد صفحه را تازه کنید.",
"Unable to load config file: please refresh the page to try again.": "قادر به بارگذاری فایل پیکربندی نیست: لطفا برای تلاش مجدد صفحه را تازه کنید.", "invalid_configuration_no_server": "پیکربندی نامعتبر: سرور پیشفرض مشخص نشده است.",
"Unexpected error preparing the app. See console for details.": "خطای غیر منتظره در آماده سازی برنامه. کنسول را برای جزئیات مشاهده کنید.", "invalid_json": "پیکربندی المنت شما شامل JSON نا معتبر است. لطفا مشکل را اصلاح کنید و صفحه را بارگذاری مجدد کنید.",
"Download Completed": "بارگیری کامل شد", "invalid_json_detail": "پیام از طرف تجزیه کننده: %(message)s",
"Open": "باز", "invalid_json_generic": "JSON اشتباه",
"Unsupported browser": "مرورگر پش‬تبانی نمی شود", "misconfigured": "Element شما پیکربندی نشده است"
"Your browser can't run %(brand)s": "مرورگر شما نمی تواند %(brand)s را اجرا کند", },
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s از ویژگی های پیشرفته مرورگر استفاده می کند که در مرورگر فعلی شما پشتیبانی نمی شوند.", "failed_to_start": "خطا در شروع",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "لطفا برای تجربه بهتر <chromeLink>کروم</chromeLink>، <firefoxLink>فایرفاکس</firefoxLink>، یا <safariLink>سافاری</safariLink> را نصب کنید.", "go_to_element_io": "برو به element.io",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "شما می توانید با مرورگر فعلی خود ادامه دهید، اما ممکن است عملکرد تمامی یا برخی از قابلیت ها با اشکال روبرو شود و نمایش برنامه صحیح نباشد.", "incompatible_browser": {
"I understand the risks and wish to continue": "از خطرات این کار آگاهم و مایلم که ادامه بدهم", "browser_links": "لطفا برای تجربه بهتر <chromeLink>کروم</chromeLink>، <firefoxLink>فایرفاکس</firefoxLink>، یا <safariLink>سافاری</safariLink> را نصب کنید.",
"Go to element.io": "برو به element.io", "continue_warning": "از خطرات این کار آگاهم و مایلم که ادامه بدهم",
"Failed to start": "خطا در شروع", "feature_warning": "شما می توانید با مرورگر فعلی خود ادامه دهید، اما ممکن است عملکرد تمامی یا برخی از قابلیت ها با اشکال روبرو شود و نمایش برنامه صحیح نباشد.",
"Powered by Matrix": "راه اندازی شده با استفاده از ماتریکس", "features": "%(brand)s از ویژگی های پیشرفته مرورگر استفاده می کند که در مرورگر فعلی شما پشتیبانی نمی شوند.",
"Use %(brand)s on mobile": "از %(brand)s گوشی استفاده کنید", "summary": "مرورگر شما نمی تواند %(brand)s را اجرا کند",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "همکاری چت غیرمتمرکز و رمزگذاری شده &amp; توسعه یافته با استفاده از $matrixLogo", "title": "مرورگر پش‬تبانی نمی شود"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s: روی %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s دسکتاپ: %(platformName)s" "powered_by_matrix": "راه اندازی شده با استفاده از ماتریکس",
"powered_by_matrix_with_logo": "همکاری چت غیرمتمرکز و رمزگذاری شده &amp; توسعه یافته با استفاده از $matrixLogo",
"unknown_device": "دستگاه ناشناخته",
"use_brand_on_mobile": "از %(brand)s گوشی استفاده کنید",
"web_default_device_name": "%(appName)s: %(browserName)s: روی %(osName)s",
"welcome_to_element": "به Element خوش‌آمدید"
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "Hylkää", "action": {
"Unknown device": "Tuntematon laite", "dismiss": "Hylkää",
"Welcome to Element": "Tervetuloa Element-sovellukseen", "open": "Avaa"
"Sign In": "Kirjaudu", },
"Create Account": "Luo tili", "auth": {
"Explore rooms": "Selaa huoneita", "sso_complete_in_browser_dialog_title": "Tee kirjautuminen loppuun selaimessasi"
"Unexpected error preparing the app. See console for details.": "Odottamaton virhe sovellusta valmisteltaessa. Katso konsolista lisätietoja.", },
"Invalid configuration: no default server specified.": "Virheellinen asetus: oletuspalvelinta ei ole määritetty.", "desktop_default_device_name": "%(brand)sin työpöytäversio: %(platformName)s",
"The message from the parser is: %(message)s": "Viesti jäsentimeltä: %(message)s", "download_completed": "Lataus valmis",
"Invalid JSON": "Virheellinen JSON", "error": {
"Unable to load config file: please refresh the page to try again.": "Asetustiedostoa ei voi ladata. Yritä uudelleen lataamalla sivu uudelleen.", "app_launch_unexpected_error": "Odottamaton virhe sovellusta valmisteltaessa. Katso konsolista lisätietoja.",
"Go to your browser to complete Sign In": "Tee kirjautuminen loppuun selaimessasi", "cannot_load_config": "Asetustiedostoa ei voi ladata. Yritä uudelleen lataamalla sivu uudelleen.",
"Unsupported browser": "Selainta ei tueta", "invalid_configuration_no_server": "Virheellinen asetus: oletuspalvelinta ei ole määritetty.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Asenna <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> tai <safariLink>Safari</safariLink>, jotta kaikki toimii parhaiten.", "invalid_json": "Element-asetuksesi sisältävät epäkelpoa JSONia. Korjaa ongelma ja lataa sivu uudelleen.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Voit käyttää edelleen nykyistä selaintasi, mutta jotkut tai kaikki ominaisuudet eivät ehkä toimi ja sovelluksen ulkoasu voi olla virheellinen.", "invalid_json_detail": "Viesti jäsentimeltä: %(message)s",
"I understand the risks and wish to continue": "Ymmärrän riskit ja haluan jatkaa", "invalid_json_generic": "Virheellinen JSON",
"Failed to start": "Käynnistys ei onnistunut", "misconfigured": "Elementisi asetukset ovat pielessä"
"Download Completed": "Lataus valmis", },
"Open": "Avaa", "failed_to_start": "Käynnistys ei onnistunut",
"Go to element.io": "Mene osoitteeseen riot.im", "go_to_element_io": "Mene osoitteeseen riot.im",
"Your Element is misconfigured": "Elementisi asetukset ovat pielessä", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Element-asetuksesi sisältävät epäkelpoa JSONia. Korjaa ongelma ja lataa sivu uudelleen.", "browser_links": "Asenna <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> tai <safariLink>Safari</safariLink>, jotta kaikki toimii parhaiten.",
"Powered by Matrix": "Moottorina Matrix", "continue_warning": "Ymmärrän riskit ja haluan jatkaa",
"Your browser can't run %(brand)s": "%(brand)s ei toimi selaimessasi", "feature_warning": "Voit käyttää edelleen nykyistä selaintasi, mutta jotkut tai kaikki ominaisuudet eivät ehkä toimi ja sovelluksen ulkoasu voi olla virheellinen.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s käyttää edistyneitä selaimen ominaisuuksia, joita nykyinen selaimesi ei tue.", "features": "%(brand)s käyttää edistyneitä selaimen ominaisuuksia, joita nykyinen selaimesi ei tue.",
"Use %(brand)s on mobile": "Käytä %(brand)sia mobiilisti", "summary": "%(brand)s ei toimi selaimessasi",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Hajautettu, salattu keskustelu &amp; yhteistyö, taustavoimana $matrixLogo", "title": "Selainta ei tueta"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s käyttöjärjestelmällä %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)sin työpöytäversio: %(platformName)s" "powered_by_matrix": "Moottorina Matrix",
"powered_by_matrix_with_logo": "Hajautettu, salattu keskustelu &amp; yhteistyö, taustavoimana $matrixLogo",
"unknown_device": "Tuntematon laite",
"use_brand_on_mobile": "Käytä %(brand)sia mobiilisti",
"web_default_device_name": "%(appName)s: %(browserName)s käyttöjärjestelmällä %(osName)s",
"welcome_to_element": "Tervetuloa Element-sovellukseen"
} }

View File

@ -1,32 +1,37 @@
{ {
"Dismiss": "Ignorer", "action": {
"Unknown device": "Appareil inconnu", "dismiss": "Ignorer",
"Welcome to Element": "Bienvenue sur Element", "open": "Ouvrir"
"Sign In": "Se connecter", },
"Create Account": "Créer un compte", "auth": {
"Explore rooms": "Parcourir les salons", "sso_complete_in_browser_dialog_title": "Utilisez votre navigateur pour terminer la connexion"
"Unexpected error preparing the app. See console for details.": "Une erreur inattendue est survenue pendant la préparation de lapplication. Consultez la console pour avoir des détails.", },
"Invalid configuration: no default server specified.": "Configuration invalide : aucun serveur par défaut indiqué.", "desktop_default_device_name": "%(brand)s pour bureau : %(platformName)s",
"The message from the parser is: %(message)s": "Le message de lanalyseur est : %(message)s", "download_completed": "Téléchargement terminé",
"Invalid JSON": "JSON non valide", "error": {
"Go to your browser to complete Sign In": "Utilisez votre navigateur pour terminer la connexion", "app_launch_unexpected_error": "Une erreur inattendue est survenue pendant la préparation de lapplication. Consultez la console pour avoir des détails.",
"Unable to load config file: please refresh the page to try again.": "Impossible de charger le fichier de configuration : rechargez la page pour réessayer.", "cannot_load_config": "Impossible de charger le fichier de configuration : rechargez la page pour réessayer.",
"Unsupported browser": "Navigateur non pris en charge", "invalid_configuration_mixed_server": "Configuration invalide : default_hs_url ne peut pas être défini en même temps que default_server_name ou default_server_config",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Veuillez installer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ou <safariLink>Safari</safariLink> pour une expérience optimale.", "invalid_configuration_no_server": "Configuration invalide : aucun serveur par défaut indiqué.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Vous pouvez continuer à utiliser votre navigateur actuel, mais vous risquez de trouver que certaines fonctionnalités et/ou lapparence de lapplication sont incorrectes.", "invalid_json": "La configuration de votre Element contient du JSON invalide. Veuillez corriger le problème et recharger la page.",
"I understand the risks and wish to continue": "Je comprends les risques et souhaite continuer", "invalid_json_detail": "Le message de lanalyseur est : %(message)s",
"Go to element.io": "Aller vers element.io", "invalid_json_generic": "JSON non valide",
"Failed to start": "Échec au démarrage", "misconfigured": "Votre Element est mal configuré"
"Download Completed": "Téléchargement terminé", },
"Open": "Ouvrir", "failed_to_start": "Échec au démarrage",
"Your Element is misconfigured": "Votre Element est mal configuré", "go_to_element_io": "Aller vers element.io",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "La configuration de votre Element contient du JSON invalide. Veuillez corriger le problème et recharger la page.", "incompatible_browser": {
"Your browser can't run %(brand)s": "Votre navigateur ne peut pas exécuter %(brand)s", "browser_links": "Veuillez installer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ou <safariLink>Safari</safariLink> pour une expérience optimale.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s nécessite des fonctionnalités avancées que votre navigateur actuel ne prend pas en charge.", "continue_warning": "Je comprends les risques et souhaite continuer",
"Powered by Matrix": "Propulsé par Matrix", "feature_warning": "Vous pouvez continuer à utiliser votre navigateur actuel, mais vous risquez de trouver que certaines fonctionnalités et/ou lapparence de lapplication sont incorrectes.",
"Use %(brand)s on mobile": "Utiliser %(brand)s sur téléphone", "features": "%(brand)s nécessite des fonctionnalités avancées que votre navigateur actuel ne prend pas en charge.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Messagerie décentralisée, chiffrée &amp; une collaboration alimentée par $matrixLogo", "summary": "Votre navigateur ne peut pas exécuter %(brand)s",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s : %(browserName)s pour %(osName)s", "title": "Navigateur non pris en charge"
"%(brand)s Desktop: %(platformName)s": "%(brand)s pour bureau : %(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Configuration invalide : default_hs_url ne peut pas être défini en même temps que default_server_name ou default_server_config" "powered_by_matrix": "Propulsé par Matrix",
"powered_by_matrix_with_logo": "Messagerie décentralisée, chiffrée &amp; une collaboration alimentée par $matrixLogo",
"unknown_device": "Appareil inconnu",
"use_brand_on_mobile": "Utiliser %(brand)s sur téléphone",
"web_default_device_name": "%(appName)s : %(browserName)s pour %(osName)s",
"welcome_to_element": "Bienvenue sur Element"
} }

View File

@ -1,28 +1,33 @@
{ {
"Sign In": "Oanmelde", "action": {
"Failed to start": "Opstarten mislearre", "dismiss": "Slute",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Jo kinne fierder gean mei jo eigen browser, mar guon funksjes kinne net wurkje en uterlik kin de applikaasje der ôfwikend útsjen.", "open": "Iepenje"
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Graach <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, of<safariLink>Safari</safariLink> ynstallearje foar de beste ûnderfining.", },
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s brûkt avansearre browserfunksjes dyt net stipe wurde troch de browser dyt jo no brûke.", "auth": {
"Powered by Matrix": "Mooglik makke troch Matrix", "sso_complete_in_browser_dialog_title": "Gean nei jo browser om it ynskriuwen te foltôgjen"
"Unexpected error preparing the app. See console for details.": "Unferwachte flater by it klearmeitsjen fan de applikaasje. Sjoch yn de console foar details.", },
"The message from the parser is: %(message)s": "It berjocht fan de ferwurker is: %(message)s", "download_completed": "Download foltôge",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Jo Element-konfiguraasje hat ûnjildige JSON. Nei dat jo dit oplost ha, kin dizze side ferfarske wurde.", "error": {
"Use %(brand)s on mobile": "Brûk %(brand)s op mobyl", "app_launch_unexpected_error": "Unferwachte flater by it klearmeitsjen fan de applikaasje. Sjoch yn de console foar details.",
"Go to your browser to complete Sign In": "Gean nei jo browser om it ynskriuwen te foltôgjen", "cannot_load_config": "Kin konfiguraasjebestân net lade: ferfarskje de side en probearje it nochris.",
"Download Completed": "Download foltôge", "invalid_configuration_no_server": "Unjildiche konfiguraasje: gjin standertserver selektearre.",
"Unable to load config file: please refresh the page to try again.": "Kin konfiguraasjebestân net lade: ferfarskje de side en probearje it nochris.", "invalid_json": "Jo Element-konfiguraasje hat ûnjildige JSON. Nei dat jo dit oplost ha, kin dizze side ferfarske wurde.",
"Dismiss": "Slute", "invalid_json_detail": "It berjocht fan de ferwurker is: %(message)s",
"Explore rooms": "Keamers ûntdekke", "invalid_json_generic": "Unjildige JSON",
"Create Account": "Registrearje", "misconfigured": "Jo Element is net goed konfigurearre"
"Welcome to Element": "Wolkom by Element", },
"I understand the risks and wish to continue": "Ik begryp de risiko's en wol graach fierder gean", "failed_to_start": "Opstarten mislearre",
"Go to element.io": "Gean nei element.io", "go_to_element_io": "Gean nei element.io",
"Your browser can't run %(brand)s": "Jo browser kin %(brand)s net útfiere", "incompatible_browser": {
"Unsupported browser": "Net stipe browser", "browser_links": "Graach <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, of<safariLink>Safari</safariLink> ynstallearje foar de beste ûnderfining.",
"Unknown device": "Unbekend apparaat", "continue_warning": "Ik begryp de risiko's en wol graach fierder gean",
"Open": "Iepenje", "feature_warning": "Jo kinne fierder gean mei jo eigen browser, mar guon funksjes kinne net wurkje en uterlik kin de applikaasje der ôfwikend útsjen.",
"Invalid JSON": "Unjildige JSON", "features": "%(brand)s brûkt avansearre browserfunksjes dyt net stipe wurde troch de browser dyt jo no brûke.",
"Your Element is misconfigured": "Jo Element is net goed konfigurearre", "summary": "Jo browser kin %(brand)s net útfiere",
"Invalid configuration: no default server specified.": "Unjildiche konfiguraasje: gjin standertserver selektearre." "title": "Net stipe browser"
},
"powered_by_matrix": "Mooglik makke troch Matrix",
"unknown_device": "Unbekend apparaat",
"use_brand_on_mobile": "Brûk %(brand)s op mobyl",
"welcome_to_element": "Wolkom by Element"
} }

View File

@ -1,28 +1,33 @@
{ {
"Unknown device": "Gléas nár aithníodh", "action": {
"Dismiss": "Cuir uait", "dismiss": "Cuir uait",
"Welcome to Element": "Fáilte romhat chuig Element", "open": "Oscail"
"Sign In": "Sínigh Isteach", },
"Create Account": "Déan cuntas a chruthú", "auth": {
"Explore rooms": "Breathnaigh thart ar na seomraí", "sso_complete_in_browser_dialog_title": "Oscail do bhrabhsálaí agus críochnaigh an clárú"
"Your browser can't run %(brand)s": "Níl do bhrabhsálaí comhoiriúnach do %(brand)s", },
"Go to your browser to complete Sign In": "Oscail do bhrabhsálaí agus críochnaigh an clárú", "download_completed": "Íoslódáil críochnaithe",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Coinníonn do chumraíocht JSON neamhbhailí. Ceartaigh an fadhb agus athlódáil an leathanach le do thoil.", "error": {
"Your Element is misconfigured": "Níl do fheidhmchlár Element cumraithe i gceart", "app_launch_unexpected_error": "Earráid nuair an feidhmchlár a hullmhú. Feic sa consól le haghaidh eolas.",
"Failed to start": "Theip chun tosú", "cannot_load_config": "Ní féidir an comhad cumraíochta a lódáil. Athnuaigh an leathanach chun déanamh iarracht arís le do thoil.",
"I understand the risks and wish to continue": "Tuigim na rioscaí agus ba mhaith liom lean ar aghaidh", "invalid_configuration_no_server": "Cumraíocht neamhbhailí: Níl aon freastalaí réamhshocraithe a sonrú.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "An féidir leat úsáid do bhrabhsálaí reatha, ach nár oibrí roinnt nó gach gné agus nár thaispeántar an feidhmchlár i gceart.", "invalid_json": "Coinníonn do chumraíocht JSON neamhbhailí. Ceartaigh an fadhb agus athlódáil an leathanach le do thoil.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Suiteáil <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> chun an taithí is fearr a fháil.", "invalid_json_detail": "Is í an teachtaireacht as an parsálaí: %(message)s",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "Úsáideann %(brand)s gnéithe ardforbartha nach bhfuil ar fáil faoi do bhrabhsálaí reatha.", "invalid_json_generic": "JSON neamhbhailí",
"Unsupported browser": "Brabhsálaí gan tacaíocht", "misconfigured": "Níl do fheidhmchlár Element cumraithe i gceart"
"Unexpected error preparing the app. See console for details.": "Earráid nuair an feidhmchlár a hullmhú. Feic sa consól le haghaidh eolas.", },
"Unable to load config file: please refresh the page to try again.": "Ní féidir an comhad cumraíochta a lódáil. Athnuaigh an leathanach chun déanamh iarracht arís le do thoil.", "failed_to_start": "Theip chun tosú",
"Download Completed": "Íoslódáil críochnaithe", "go_to_element_io": "Téigh go element.io",
"Invalid JSON": "JSON neamhbhailí", "incompatible_browser": {
"The message from the parser is: %(message)s": "Is í an teachtaireacht as an parsálaí: %(message)s", "browser_links": "Suiteáil <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> chun an taithí is fearr a fháil.",
"Invalid configuration: no default server specified.": "Cumraíocht neamhbhailí: Níl aon freastalaí réamhshocraithe a sonrú.", "continue_warning": "Tuigim na rioscaí agus ba mhaith liom lean ar aghaidh",
"Powered by Matrix": "Cumhachtaithe ag Matrix", "feature_warning": "An féidir leat úsáid do bhrabhsálaí reatha, ach nár oibrí roinnt nó gach gné agus nár thaispeántar an feidhmchlár i gceart.",
"Go to element.io": "Téigh go element.io", "features": "Úsáideann %(brand)s gnéithe ardforbartha nach bhfuil ar fáil faoi do bhrabhsálaí reatha.",
"Open": "Oscail", "summary": "Níl do bhrabhsálaí comhoiriúnach do %(brand)s",
"Use %(brand)s on mobile": "Úsáid %(brand)s ar guthán póca" "title": "Brabhsálaí gan tacaíocht"
},
"powered_by_matrix": "Cumhachtaithe ag Matrix",
"unknown_device": "Gléas nár aithníodh",
"use_brand_on_mobile": "Úsáid %(brand)s ar guthán póca",
"welcome_to_element": "Fáilte romhat chuig Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "Rexeitar", "action": {
"Unknown device": "Dispositivo descoñecido", "dismiss": "Rexeitar",
"Welcome to Element": "Benvida/o a Element", "open": "Abrir"
"Sign In": "Acceder", },
"Create Account": "Crear conta", "auth": {
"Explore rooms": "Explorar salas", "sso_complete_in_browser_dialog_title": "Abre o navegador para realizar a Conexión"
"The message from the parser is: %(message)s": "A mensaxe desde o intérprete é: %(message)s", },
"Invalid JSON": "JSON non válido", "desktop_default_device_name": "%(brand)s para Escritorio: %(platformName)s",
"Unexpected error preparing the app. See console for details.": "Fallo non agardado ao preparar a app. Detalles na consola.", "download_completed": "Descarga realizada",
"Invalid configuration: no default server specified.": "Configuración non válida: non se indicou servidor por defecto.", "error": {
"Unable to load config file: please refresh the page to try again.": "Non se cargou o ficheiro de configuración: actualiza a páxina para reintentalo.", "app_launch_unexpected_error": "Fallo non agardado ao preparar a app. Detalles na consola.",
"Go to your browser to complete Sign In": "Abre o navegador para realizar a Conexión", "cannot_load_config": "Non se cargou o ficheiro de configuración: actualiza a páxina para reintentalo.",
"Unsupported browser": "Navegador non soportado", "invalid_configuration_no_server": "Configuración non válida: non se indicou servidor por defecto.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Instala <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ou <safariLink>Safari</safariLink> para ter unha mellor experiencia.", "invalid_json": "A configuración de Element contén JSON non válido. Corrixe o problema e recarga a páxina.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Podes continuar co teu navegador, pero algunhas características poderían non funcionar e o aspecto da aplicación podería non ser o correcto.", "invalid_json_detail": "A mensaxe desde o intérprete é: %(message)s",
"I understand the risks and wish to continue": "Entendo os riscos e desexo continuar", "invalid_json_generic": "JSON non válido",
"Go to element.io": "Ir a element.io", "misconfigured": "Element non está ben configurado"
"Failed to start": "Fallou o inicio", },
"Download Completed": "Descarga realizada", "failed_to_start": "Fallou o inicio",
"Open": "Abrir", "go_to_element_io": "Ir a element.io",
"Your Element is misconfigured": "Element non está ben configurado", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "A configuración de Element contén JSON non válido. Corrixe o problema e recarga a páxina.", "browser_links": "Instala <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ou <safariLink>Safari</safariLink> para ter unha mellor experiencia.",
"Your browser can't run %(brand)s": "O teu navegador non pode executar %(brand)s", "continue_warning": "Entendo os riscos e desexo continuar",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s utiliza características avanzadas do navegador que non están dispoñibles no teu navegador.", "feature_warning": "Podes continuar co teu navegador, pero algunhas características poderían non funcionar e o aspecto da aplicación podería non ser o correcto.",
"Powered by Matrix": "Funciona grazas a Matrix", "features": "%(brand)s utiliza características avanzadas do navegador que non están dispoñibles no teu navegador.",
"Use %(brand)s on mobile": "Utiliza %(brand)s no móbil", "summary": "O teu navegador non pode executar %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Conversas &amp; colaboración descentralizadas e cifradas grazas a $matrixLogo", "title": "Navegador non soportado"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s en %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s para Escritorio: %(platformName)s" "powered_by_matrix": "Funciona grazas a Matrix",
"powered_by_matrix_with_logo": "Conversas &amp; colaboración descentralizadas e cifradas grazas a $matrixLogo",
"unknown_device": "Dispositivo descoñecido",
"use_brand_on_mobile": "Utiliza %(brand)s no móbil",
"web_default_device_name": "%(appName)s: %(browserName)s en %(osName)s",
"welcome_to_element": "Benvida/o a Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "התעלם", "action": {
"Unknown device": "מכשיר לא ידוע", "dismiss": "התעלם",
"Welcome to Element": "ברוכים הבאים ל Element", "open": "פתח"
"Invalid JSON": "JSON לא חוקי", },
"Invalid configuration: no default server specified.": "תצורה שגויה: לא צוין שרת ברירת מחדל.", "auth": {
"Go to your browser to complete Sign In": "עבור לדפדפן להמשך ההתחברות", "sso_complete_in_browser_dialog_title": "עבור לדפדפן להמשך ההתחברות"
"Explore rooms": "גלה חדרים", },
"Create Account": "משתמש חדש", "desktop_default_device_name": "%(brand)s שולחן עבודה: %(platformName)s",
"Sign In": "התחברות", "download_completed": "ההורדה הושלמה",
"Open": "פתח", "error": {
"Download Completed": "ההורדה הושלמה", "app_launch_unexpected_error": "שגיאה לא צפויה במהלך טעינת האפליקציה. ראו קונסול לפרטים נוספים.",
"Unexpected error preparing the app. See console for details.": "שגיאה לא צפויה במהלך טעינת האפליקציה. ראו קונסול לפרטים נוספים.", "cannot_load_config": "לא ניתן לטעון את קובץ ההגדרות: יש לרענן את הדף כדי לנסות שנית.",
"Unable to load config file: please refresh the page to try again.": "לא ניתן לטעון את קובץ ההגדרות: יש לרענן את הדף כדי לנסות שנית.", "invalid_configuration_no_server": "תצורה שגויה: לא צוין שרת ברירת מחדל.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "האלמנט מכיל הגדרת JSON שגויה, אנא תקנו את הבעיה ואתחלו את הדף.", "invalid_json": "האלמנט מכיל הגדרת JSON שגויה, אנא תקנו את הבעיה ואתחלו את הדף.",
"Your Element is misconfigured": "Element אינו מוגדר תקין", "invalid_json_detail": "ההודעה מהמנתח היא: %(message)s",
"Go to element.io": "חזור לאתר הראשי: element.io", "invalid_json_generic": "JSON לא חוקי",
"I understand the risks and wish to continue": "הסיכונים מובנים לי ואני מעוניינ/ת להמשיך", "misconfigured": "Element אינו מוגדר תקין"
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "ניתן להמשיך ולהשתמש בדפדפן זה, אך ייתכן שחלק מן התכונות והמאפיינים לא יעבדו כשורה או ייראו כשגויים.", },
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "נא התקן את דפדפן <chromeLink>כרום</chromeLink>, <firefoxLink>פיירפוקס</firefoxLink> או <safariLink>סאפרי</safariLink> בשביל החוויה הטובה ביותר.", "failed_to_start": "כשל בהעלאת התוכנה",
"Failed to start": "כשל בהעלאת התוכנה", "go_to_element_io": "חזור לאתר הראשי: element.io",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s משתמש בתכונות דפדפן מתקדמות שאינן נתמכות בדפדפן הנוכחי שלך.", "incompatible_browser": {
"Your browser can't run %(brand)s": "הדפדפן שלך לא יכול להריץ %(brand)s", "browser_links": "נא התקן את דפדפן <chromeLink>כרום</chromeLink>, <firefoxLink>פיירפוקס</firefoxLink> או <safariLink>סאפרי</safariLink> בשביל החוויה הטובה ביותר.",
"Unsupported browser": "דפדפן לא נתמך", "continue_warning": "הסיכונים מובנים לי ואני מעוניינ/ת להמשיך",
"Powered by Matrix": "מופעל על ידי מטריקס", "feature_warning": "ניתן להמשיך ולהשתמש בדפדפן זה, אך ייתכן שחלק מן התכונות והמאפיינים לא יעבדו כשורה או ייראו כשגויים.",
"The message from the parser is: %(message)s": "ההודעה מהמנתח היא: %(message)s", "features": "%(brand)s משתמש בתכונות דפדפן מתקדמות שאינן נתמכות בדפדפן הנוכחי שלך.",
"Use %(brand)s on mobile": "השתמש ב-%(brand)s במכשיר הנייד", "summary": "הדפדפן שלך לא יכול להריץ %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "צ'אט מבוזר ומוצפן &amp; מופעל בשיתוף פעולה ע\"י $matrixLogo", "title": "דפדפן לא נתמך"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s עַל %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s שולחן עבודה: %(platformName)s" "powered_by_matrix": "מופעל על ידי מטריקס",
"powered_by_matrix_with_logo": "צ'אט מבוזר ומוצפן &amp; מופעל בשיתוף פעולה ע\"י $matrixLogo",
"unknown_device": "מכשיר לא ידוע",
"use_brand_on_mobile": "השתמש ב-%(brand)s במכשיר הנייד",
"web_default_device_name": "%(appName)s: %(browserName)s עַל %(osName)s",
"welcome_to_element": "ברוכים הבאים ל Element"
} }

View File

@ -1,28 +1,33 @@
{ {
"Unknown device": "अज्ञात यन्त्र", "action": {
"Dismiss": "खारिज", "dismiss": "खारिज",
"Welcome to Element": "Element में आपका स्वागत है", "open": "खुला"
"Sign In": "साइन करना", },
"Create Account": "खाता बनाएं", "auth": {
"Explore rooms": "रूम का अन्वेषण करें", "sso_complete_in_browser_dialog_title": "साइन इन पूरा करने के लिए अपने ब्राउज़र पर जाएं"
"Failed to start": "प्रारंभ करने में विफल", },
"Go to element.io": "element.io पर जाएं", "download_completed": "डाउनलोड सम्पन्न हुआ",
"I understand the risks and wish to continue": "मैं जोखिमों को समझता हूं और जारी रखना चाहता हूं", "error": {
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "आप अपने वर्तमान ब्राउज़र का उपयोग जारी रख सकते हैं, लेकिन हो सकता है कि कुछ या सभी सुविधाएं काम न करें और एप्लिकेशन का रंगरूप गलत हो सकता है।", "app_launch_unexpected_error": "ऐप्लिकेशन तैयार करने में अनपेक्षित गड़बड़ी हुई. विवरण के लिए कंसोल देखें।",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "सर्वोत्तम अनुभव के लिए कृपया <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, या <safariLink>Safari</safariLink> इंस्टॉल करें।", "cannot_load_config": "कॉन्फ़िग फ़ाइल लोड करने में असमर्थ: कृपया पुन: प्रयास करने के लिए पृष्ठ को रीफ़्रेश करें।",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s उन्नत ब्राउज़र सुविधाओं का उपयोग करते हैं जो आपके वर्तमान ब्राउज़र द्वारा समर्थित नहीं हैं।", "invalid_configuration_no_server": "अमान्य कॉन्फ़िगरेशन: कोई डिफ़ॉल्ट सर्वर निर्दिष्ट नहीं है।",
"Your browser can't run %(brand)s": "आपका ब्राउज़र %(brand)s को नहीं चला सकता", "invalid_json": "आपके एलीमेंट कॉन्फ़िगरेशन में अमान्य JSON है. कृपया समस्या को ठीक करें और पृष्ठ को पुनः लोड करें।",
"Use %(brand)s on mobile": "मोबाइल पर %(brand)s का प्रयोग करें", "invalid_json_detail": "पार्सर का संदेश है: %(message)s",
"Unsupported browser": "असमर्थित ब्राउज़र", "invalid_json_generic": "अमान्य JSON",
"Powered by Matrix": "मैट्रिक्स द्वारा संचालित", "misconfigured": "आपका तत्व गलत कॉन्फ़िगर किया गया है"
"Go to your browser to complete Sign In": "साइन इन पूरा करने के लिए अपने ब्राउज़र पर जाएं", },
"Open": "खुला", "failed_to_start": "प्रारंभ करने में विफल",
"Download Completed": "डाउनलोड सम्पन्न हुआ", "go_to_element_io": "element.io पर जाएं",
"Unexpected error preparing the app. See console for details.": "ऐप्लिकेशन तैयार करने में अनपेक्षित गड़बड़ी हुई. विवरण के लिए कंसोल देखें।", "incompatible_browser": {
"Unable to load config file: please refresh the page to try again.": "कॉन्फ़िग फ़ाइल लोड करने में असमर्थ: कृपया पुन: प्रयास करने के लिए पृष्ठ को रीफ़्रेश करें।", "browser_links": "सर्वोत्तम अनुभव के लिए कृपया <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, या <safariLink>Safari</safariLink> इंस्टॉल करें।",
"Invalid JSON": "अमान्य JSON", "continue_warning": "मैं जोखिमों को समझता हूं और जारी रखना चाहता हूं",
"The message from the parser is: %(message)s": "पार्सर का संदेश है: %(message)s", "feature_warning": "आप अपने वर्तमान ब्राउज़र का उपयोग जारी रख सकते हैं, लेकिन हो सकता है कि कुछ या सभी सुविधाएं काम न करें और एप्लिकेशन का रंगरूप गलत हो सकता है।",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "आपके एलीमेंट कॉन्फ़िगरेशन में अमान्य JSON है. कृपया समस्या को ठीक करें और पृष्ठ को पुनः लोड करें।", "features": "%(brand)s उन्नत ब्राउज़र सुविधाओं का उपयोग करते हैं जो आपके वर्तमान ब्राउज़र द्वारा समर्थित नहीं हैं।",
"Your Element is misconfigured": "आपका तत्व गलत कॉन्फ़िगर किया गया है", "summary": "आपका ब्राउज़र %(brand)s को नहीं चला सकता",
"Invalid configuration: no default server specified.": "अमान्य कॉन्फ़िगरेशन: कोई डिफ़ॉल्ट सर्वर निर्दिष्ट नहीं है।" "title": "असमर्थित ब्राउज़र"
},
"powered_by_matrix": "मैट्रिक्स द्वारा संचालित",
"unknown_device": "अज्ञात यन्त्र",
"use_brand_on_mobile": "मोबाइल पर %(brand)s का प्रयोग करें",
"welcome_to_element": "Element में आपका स्वागत है"
} }

View File

@ -1,5 +1,7 @@
{ {
"Unknown device": "Nepoznati uređaj", "action": {
"Dismiss": "Odbaci", "dismiss": "Odbaci"
"Welcome to Element": "Dobrodošli u Element" },
"unknown_device": "Nepoznati uređaj",
"welcome_to_element": "Dobrodošli u Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "Eltüntetés", "action": {
"Unknown device": "Ismeretlen eszköz", "dismiss": "Eltüntetés",
"Welcome to Element": "Üdvözli az Element", "open": "Megnyitás"
"Sign In": "Bejelentkezés", },
"Create Account": "Fiók létrehozása", "auth": {
"Explore rooms": "Szobák felderítése", "sso_complete_in_browser_dialog_title": "A böngészőben fejezze be a bejelentkezést"
"Unexpected error preparing the app. See console for details.": "Váratlan hiba történt az alkalmazás előkészítésénél. A részletekért lásd a konzolt.", },
"Invalid configuration: no default server specified.": "Érvénytelen konfiguráció: nincs megadva alapértelmezett kiszolgáló.", "desktop_default_device_name": "Asztali %(brand)s: (%(platformName)s)",
"The message from the parser is: %(message)s": "A feldolgozó algoritmus üzenete: %(message)s", "download_completed": "A letöltés befejeződött",
"Invalid JSON": "Érvénytelen JSON", "error": {
"Go to your browser to complete Sign In": "A böngészőben fejezze be a bejelentkezést", "app_launch_unexpected_error": "Váratlan hiba történt az alkalmazás előkészítésénél. A részletekért lásd a konzolt.",
"Unable to load config file: please refresh the page to try again.": "A konfigurációs fájlt nem sikerült betölteni: frissítse az oldalt és próbálja meg újra.", "cannot_load_config": "A konfigurációs fájlt nem sikerült betölteni: frissítse az oldalt és próbálja meg újra.",
"Unsupported browser": "Nem támogatott böngésző", "invalid_configuration_no_server": "Érvénytelen konfiguráció: nincs megadva alapértelmezett kiszolgáló.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "A legjobb élmény érdékében telepítsen <chromeLink>Chrome-ot</chromeLink>, <firefoxLink>Firefoxot</firefoxLink> vagy <safariLink>Safarit</safariLink>.", "invalid_json": "Az Element érvénytelen JSON-t tartalmazó konfigurációval rendelkezik. Javítsa és töltse újra az oldalt.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Folytathatja a jelenlegi böngészőjével, de néhány vagy az összes funkció használhatatlan lehet, vagy hibák lehetnek az alkalmazás kinézetében és viselkedésében.", "invalid_json_detail": "A feldolgozó algoritmus üzenete: %(message)s",
"I understand the risks and wish to continue": "Megértettem a kockázatot és folytatom", "invalid_json_generic": "Érvénytelen JSON",
"Go to element.io": "Irány a element.io", "misconfigured": "Az Element hibásan van beállítva"
"Failed to start": "Az indítás sikertelen", },
"Download Completed": "A letöltés befejeződött", "failed_to_start": "Az indítás sikertelen",
"Open": "Megnyitás", "go_to_element_io": "Irány a element.io",
"Your Element is misconfigured": "Az Element hibásan van beállítva", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Az Element érvénytelen JSON-t tartalmazó konfigurációval rendelkezik. Javítsa és töltse újra az oldalt.", "browser_links": "A legjobb élmény érdékében telepítsen <chromeLink>Chrome-ot</chromeLink>, <firefoxLink>Firefoxot</firefoxLink> vagy <safariLink>Safarit</safariLink>.",
"Your browser can't run %(brand)s": "A böngészője nem tudja futtatni ezt: %(brand)s", "continue_warning": "Megértettem a kockázatot és folytatom",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "A(z) %(brand)s speciális böngészőfunkciókat használ, amelyeket a jelenlegi böngészője nem támogat.", "feature_warning": "Folytathatja a jelenlegi böngészőjével, de néhány vagy az összes funkció használhatatlan lehet, vagy hibák lehetnek az alkalmazás kinézetében és viselkedésében.",
"Powered by Matrix": "A gépházban: Matrix", "features": "A(z) %(brand)s speciális böngészőfunkciókat használ, amelyeket a jelenlegi böngészője nem támogat.",
"Use %(brand)s on mobile": "Mobilon használja ezt: %(brand)s", "summary": "A böngészője nem tudja futtatni ezt: %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Elosztott, titkosított csevegés és együttműködés ezzel: $matrixLogo", "title": "Nem támogatott böngésző"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: (%(browserName)s itt: %(osName)s)", },
"%(brand)s Desktop: %(platformName)s": "Asztali %(brand)s: (%(platformName)s)" "powered_by_matrix": "A gépházban: Matrix",
"powered_by_matrix_with_logo": "Elosztott, titkosított csevegés és együttműködés ezzel: $matrixLogo",
"unknown_device": "Ismeretlen eszköz",
"use_brand_on_mobile": "Mobilon használja ezt: %(brand)s",
"web_default_device_name": "%(appName)s: (%(browserName)s itt: %(osName)s)",
"welcome_to_element": "Üdvözli az Element"
} }

View File

@ -1,21 +1,26 @@
{ {
"Explore rooms": "Փնտրել սենյակներ", "action": {
"Failed to start": "Չի ստացվում սկսել", "dismiss": "Հեռացնել",
"Use %(brand)s on mobile": "Օգտագործում է %(brand)s հեռախոսի վրա", "open": "Բացել"
"Unknown device": "Անծանոթ սարք", },
"Welcome to Element": "Բարի գալուստ Element", "auth": {
"Your browser can't run %(brand)s": "Ձեր բրաուզերը չի թողարկում %(brand)s", "sso_complete_in_browser_dialog_title": "Հետ գնացեք բրաուզեր մուտք գործելն ավարտելու համար"
"Unsupported browser": "Չհամապատասխանող բրաուզեր", },
"Dismiss": "Հեռացնել", "download_completed": "Ներբեռնումն ավարտված է",
"Open": "Բացել", "error": {
"Unable to load config file: please refresh the page to try again.": "Ֆայլի ներմուծման սխալ․ խնդրում ենք թարմացնել էջը և նորից փորձել։", "cannot_load_config": "Ֆայլի ներմուծման սխալ․ խնդրում ենք թարմացնել էջը և նորից փորձել։",
"Invalid JSON": "Չաշխատող JSON", "invalid_json_generic": "Չաշխատող JSON",
"Your Element is misconfigured": "Ձեր Element֊ը սխալ է կարգավորված", "misconfigured": "Ձեր Element֊ը սխալ է կարգավորված"
"Powered by Matrix": "Սնուցվում է Matrixի կողմից", },
"I understand the risks and wish to continue": "Ես գնահատում եմ ռիսկերն ու ցանկանում եմ շարունակել", "failed_to_start": "Չի ստացվում սկսել",
"Create Account": "Ստեղծել օգտահաշիվ", "go_to_element_io": "Այցելեք element.io",
"Sign In": "Մուտք գործել", "incompatible_browser": {
"Go to element.io": "Այցելեք element.io", "continue_warning": "Ես գնահատում եմ ռիսկերն ու ցանկանում եմ շարունակել",
"Go to your browser to complete Sign In": "Հետ գնացեք բրաուզեր մուտք գործելն ավարտելու համար", "summary": "Ձեր բրաուզերը չի թողարկում %(brand)s",
"Download Completed": "Ներբեռնումն ավարտված է" "title": "Չհամապատասխանող բրաուզեր"
},
"powered_by_matrix": "Սնուցվում է Matrixի կողմից",
"unknown_device": "Անծանոթ սարք",
"use_brand_on_mobile": "Օգտագործում է %(brand)s հեռախոսի վրա",
"welcome_to_element": "Բարի գալուստ Element"
} }

View File

@ -1,32 +1,36 @@
{ {
"Dismiss": "Abaikan", "action": {
"Unknown device": "Perangkat tidak diketahui", "dismiss": "Abaikan",
"Welcome to Element": "Selamat datang di Element", "open": "Buka"
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Konfigurasi Element Anda berisi JSON yang tidak absah. Mohon perbaiki masalahnya dan muat ulang laman ini.", },
"Invalid configuration: no default server specified.": "Konfigurasi tidak absah: server bawaan belum ditentukan.", "auth": {
"Explore rooms": "Jelajahi ruangan", "sso_complete_in_browser_dialog_title": "Buka peramban Anda untuk menyelesaikan Sign In"
"Create Account": "Buat Akun", },
"Go to your browser to complete Sign In": "Buka peramban Anda untuk menyelesaikan Sign In", "download_completed": "Unduhan Selesai",
"Sign In": "Masuk", "error": {
"Failed to start": "Gagal untuk memulai", "app_launch_unexpected_error": "Kesalahan tak terduga saat menyiapkan aplikasi. Lihat konsol untuk detail.",
"Go to element.io": "Buka element.io", "cannot_load_config": "Tidak dapat memuat file konfigurasi: mohon muat ulang laman ini untuk mencoba lagi.",
"I understand the risks and wish to continue": "Saya memahami risikonya dan ingin melanjutkan", "invalid_configuration_mixed_server": "Konfigurasi tidak valid: default_hs_url tidak dapat ditentukan bersama dengan default_server_name atau default_server_config",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Anda dapat melanjutkan menggunakan peramban Anda saat ini, tetapi beberapa atau semua fitur mungkin tidak berfungsi dan tampilan serta nuansa aplikasi mungkin tidak benar.", "invalid_configuration_no_server": "Konfigurasi tidak absah: server bawaan belum ditentukan.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Silakan instal <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, atau <safariLink>Safari</safariLink> untuk pengalaman yang terbaik.", "invalid_json": "Konfigurasi Element Anda berisi JSON yang tidak absah. Mohon perbaiki masalahnya dan muat ulang laman ini.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s menggunakan fitur peramban tingkat lanjut yang tidak didukung oleh peramban Anda saat ini.", "invalid_json_detail": "Pesan dari pengurai adalah: %(message)s",
"Your browser can't run %(brand)s": "Peramban Anda tidak dapat menjalankan %(brand)s", "invalid_json_generic": "JSON tidak absah",
"Unsupported browser": "Peramban tidak didukung", "misconfigured": "Anda salah mengatur Element"
"Use %(brand)s on mobile": "Gunakan %(brand)s di ponsel", },
"Powered by Matrix": "Diberdayakan oleh Matrix", "failed_to_start": "Gagal untuk memulai",
"Open": "Buka", "go_to_element_io": "Buka element.io",
"Download Completed": "Unduhan Selesai", "incompatible_browser": {
"Unexpected error preparing the app. See console for details.": "Kesalahan tak terduga saat menyiapkan aplikasi. Lihat konsol untuk detail.", "browser_links": "Silakan instal <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, atau <safariLink>Safari</safariLink> untuk pengalaman yang terbaik.",
"Unable to load config file: please refresh the page to try again.": "Tidak dapat memuat file konfigurasi: mohon muat ulang laman ini untuk mencoba lagi.", "continue_warning": "Saya memahami risikonya dan ingin melanjutkan",
"Invalid JSON": "JSON tidak absah", "feature_warning": "Anda dapat melanjutkan menggunakan peramban Anda saat ini, tetapi beberapa atau semua fitur mungkin tidak berfungsi dan tampilan serta nuansa aplikasi mungkin tidak benar.",
"The message from the parser is: %(message)s": "Pesan dari pengurai adalah: %(message)s", "features": "%(brand)s menggunakan fitur peramban tingkat lanjut yang tidak didukung oleh peramban Anda saat ini.",
"Your Element is misconfigured": "Anda salah mengatur Element", "summary": "Peramban Anda tidak dapat menjalankan %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Obrolan &amp; kolaborasi terdesentralisasi dan terenkripsi diberdayakan oleh $matrixLogo", "title": "Peramban tidak didukung"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s di %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s", "powered_by_matrix": "Diberdayakan oleh Matrix",
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Konfigurasi tidak valid: default_hs_url tidak dapat ditentukan bersama dengan default_server_name atau default_server_config" "powered_by_matrix_with_logo": "Obrolan &amp; kolaborasi terdesentralisasi dan terenkripsi diberdayakan oleh $matrixLogo",
"unknown_device": "Perangkat tidak diketahui",
"use_brand_on_mobile": "Gunakan %(brand)s di ponsel",
"web_default_device_name": "%(appName)s: %(browserName)s di %(osName)s",
"welcome_to_element": "Selamat datang di Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Welcome to Element": "Velkomin í Element", "action": {
"Unknown device": "Óþekkt tæki", "dismiss": "Hunsa",
"Dismiss": "Hunsa", "open": "Opna"
"Open": "Opna", },
"Unsupported browser": "Óstuddur vafri", "auth": {
"Your browser can't run %(brand)s": "Vafrinn þinn getur ekki keyrt %(brand)s", "sso_complete_in_browser_dialog_title": "Farðu í vafrann þinn til að ljúka innskráningu"
"Sign In": "Skrá inn", },
"Create Account": "Búa til notandaaðgang", "desktop_default_device_name": "%(brand)s borðtölvuútgáfa: %(platformName)s",
"Explore rooms": "Kanna spjallrásir", "download_completed": "Niðurhali lokið",
"The message from the parser is: %(message)s": "Skilaboðið frá þáttaranum er %(message)s", "error": {
"Invalid JSON": "Ógilt JSON", "app_launch_unexpected_error": "Óvænt villa við undirbúning forritsins. Sjá nánar á stjórnskjá.",
"Download Completed": "Niðurhali lokið", "cannot_load_config": "Ekki er hægt að hlaða stillingaskrána: endurnýjaðu síðuna til að reyna aftur.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Þú ættir að setja upp <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eða <safariLink>Safari</safariLink> til að fá sem besta útkomu.", "invalid_configuration_no_server": "Ógild uppsetning: enginn sjálfgefinn vefþjónn tilgreindur.",
"I understand the risks and wish to continue": "Ég skil áhættuna og óska að halda áfram", "invalid_json": "Element-stillingar þínar innihalda ógilt JSON. Leiðréttu vandamálið og endurlestu síðuna.",
"Go to element.io": "Fara á element.io", "invalid_json_detail": "Skilaboðið frá þáttaranum er %(message)s",
"Unexpected error preparing the app. See console for details.": "Óvænt villa við undirbúning forritsins. Sjá nánar á stjórnskjá.", "invalid_json_generic": "Ógilt JSON",
"Failed to start": "Mistókst að ræsa", "misconfigured": "Element-tilvikið þitt er rangt stillt"
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Þú getur haldið áfram að nota núverandi vafra, en sumir eða allir eiginleikar virka mögulega ekki rétt, auk þess sem útlit og hegðun forritsins geta verið röng.", },
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s notar háþróaða vafraeiginleika sem eru ekki studdir af vafranum þínum.", "failed_to_start": "Mistókst að ræsa",
"Powered by Matrix": "Keyrt með Matrix", "go_to_element_io": "Fara á element.io",
"Go to your browser to complete Sign In": "Farðu í vafrann þinn til að ljúka innskráningu", "incompatible_browser": {
"Unable to load config file: please refresh the page to try again.": "Ekki er hægt að hlaða stillingaskrána: endurnýjaðu síðuna til að reyna aftur.", "browser_links": "Þú ættir að setja upp <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eða <safariLink>Safari</safariLink> til að fá sem besta útkomu.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Element-stillingar þínar innihalda ógilt JSON. Leiðréttu vandamálið og endurlestu síðuna.", "continue_warning": "Ég skil áhættuna og óska að halda áfram",
"Your Element is misconfigured": "Element-tilvikið þitt er rangt stillt", "feature_warning": "Þú getur haldið áfram að nota núverandi vafra, en sumir eða allir eiginleikar virka mögulega ekki rétt, auk þess sem útlit og hegðun forritsins geta verið röng.",
"Invalid configuration: no default server specified.": "Ógild uppsetning: enginn sjálfgefinn vefþjónn tilgreindur.", "features": "%(brand)s notar háþróaða vafraeiginleika sem eru ekki studdir af vafranum þínum.",
"Use %(brand)s on mobile": "Nota %(brand)s í síma", "summary": "Vafrinn þinn getur ekki keyrt %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Dreifstýrt, dulritað spjall og samskipti keyrt með $matrixLogo", "title": "Óstuddur vafri"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s á %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s borðtölvuútgáfa: %(platformName)s" "powered_by_matrix": "Keyrt með Matrix",
"powered_by_matrix_with_logo": "Dreifstýrt, dulritað spjall og samskipti keyrt með $matrixLogo",
"unknown_device": "Óþekkt tæki",
"use_brand_on_mobile": "Nota %(brand)s í síma",
"web_default_device_name": "%(appName)s: %(browserName)s á %(osName)s",
"welcome_to_element": "Velkomin í Element"
} }

View File

@ -1,32 +1,36 @@
{ {
"Dismiss": "Chiudi", "action": {
"Unknown device": "Dispositivo sconosciuto", "dismiss": "Chiudi",
"Welcome to Element": "Benvenuti su Element", "open": "Apri"
"Sign In": "Accedi", },
"Create Account": "Crea account", "auth": {
"Explore rooms": "Esplora stanze", "sso_complete_in_browser_dialog_title": "Vai nel tuo browser per completare l'accesso"
"Unexpected error preparing the app. See console for details.": "Errore inaspettato preparando l'app. Vedi la console per i dettagli.", },
"Invalid configuration: no default server specified.": "Configurazione non valida: nessun server predefinito specificato.", "download_completed": "Scaricamento completato",
"The message from the parser is: %(message)s": "Il messaggio dal parser è: %(message)s", "error": {
"Invalid JSON": "JSON non valido", "app_launch_unexpected_error": "Errore inaspettato preparando l'app. Vedi la console per i dettagli.",
"Go to your browser to complete Sign In": "Vai nel tuo browser per completare l'accesso", "cannot_load_config": "Impossibile caricare il file di configurazione: ricarica la pagina per riprovare.",
"Unable to load config file: please refresh the page to try again.": "Impossibile caricare il file di configurazione: ricarica la pagina per riprovare.", "invalid_configuration_mixed_server": "Configurazione non valida: default_hs_url non può essere specificato assieme a default_server_name o default_server_config",
"Unsupported browser": "Browser non supportato", "invalid_configuration_no_server": "Configurazione non valida: nessun server predefinito specificato.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Installa <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> per una migliore esperienza.", "invalid_json": "La configurazione del tuo elemento contiene un JSON non valido. Correggi il problema e ricarica la pagina.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Puoi comunque usare il browser attuale, ma alcune o tutte le caratteristiche potrebbero non funzionare e l'aspetto dell'applicazione potrebbe essere sbagliato.", "invalid_json_detail": "Il messaggio dal parser è: %(message)s",
"I understand the risks and wish to continue": "Capisco i rischi e desidero continuare", "invalid_json_generic": "JSON non valido",
"Go to element.io": "Vai su element.io", "misconfigured": "Il tuo elemento è configurato male"
"Failed to start": "Avvio fallito", },
"Download Completed": "Scaricamento completato", "failed_to_start": "Avvio fallito",
"Open": "Apri", "go_to_element_io": "Vai su element.io",
"Your Element is misconfigured": "Il tuo elemento è configurato male", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "La configurazione del tuo elemento contiene un JSON non valido. Correggi il problema e ricarica la pagina.", "browser_links": "Installa <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> per una migliore esperienza.",
"Your browser can't run %(brand)s": "Il tuo browser non può eseguire %(brand)s", "continue_warning": "Capisco i rischi e desidero continuare",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s usa funzionalità avanzate del browser che non sono supportate dal tuo browser attuale.", "feature_warning": "Puoi comunque usare il browser attuale, ma alcune o tutte le caratteristiche potrebbero non funzionare e l'aspetto dell'applicazione potrebbe essere sbagliato.",
"Powered by Matrix": "Offerto da Matrix", "features": "%(brand)s usa funzionalità avanzate del browser che non sono supportate dal tuo browser attuale.",
"Use %(brand)s on mobile": "Usa %(brand)s su mobile", "summary": "Il tuo browser non può eseguire %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Chat e collaborazioni criptate e decentralizzate offerte da $matrixLogo", "title": "Browser non supportato"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s su %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s", "powered_by_matrix": "Offerto da Matrix",
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Configurazione non valida: default_hs_url non può essere specificato assieme a default_server_name o default_server_config" "powered_by_matrix_with_logo": "Chat e collaborazioni criptate e decentralizzate offerte da $matrixLogo",
"unknown_device": "Dispositivo sconosciuto",
"use_brand_on_mobile": "Usa %(brand)s su mobile",
"web_default_device_name": "%(appName)s: %(browserName)s su %(osName)s",
"welcome_to_element": "Benvenuti su Element"
} }

View File

@ -1,31 +1,35 @@
{ {
"Welcome to Element": "Elementにようこそ", "action": {
"Unknown device": "不明な端末", "dismiss": "閉じる",
"Dismiss": "閉じる", "open": "開く"
"Unexpected error preparing the app. See console for details.": "アプリケーションの準備中に予期しないエラーが発生しました。詳細はコンソールを参照してください。", },
"Invalid configuration: no default server specified.": "不正な設定:デフォルトのサーバーが設定されていません。", "auth": {
"Sign In": "サインイン", "sso_complete_in_browser_dialog_title": "ブラウザーに移動してサインインを完了してください"
"Create Account": "アカウントを作成", },
"Explore rooms": "ルームを探す", "desktop_default_device_name": "%(brand)sデスクトップ%(platformName)s",
"The message from the parser is: %(message)s": "パーサーのメッセージ:%(message)s", "download_completed": "ダウンロードが完了しました",
"Invalid JSON": "不正なJSON", "error": {
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "最高のユーザー体験を得るためには、<chromeLink>Chrome</chromeLink>か<firefoxLink>Firefox</firefoxLink>、もしくは<safariLink>Safari</safariLink>をインストールしてください。", "app_launch_unexpected_error": "アプリケーションの準備中に予期しないエラーが発生しました。詳細はコンソールを参照してください。",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "現在のブラウザーを使い続けることもできますが、いくつか(もしくは全ての)機能が動作しなかったり、外観が崩れたりする可能性があります。", "cannot_load_config": "設定ファイルの読み込みに失敗しました:ページを再読み込みして、もう一度やり直してください。",
"I understand the risks and wish to continue": "リスクを理解して続行", "invalid_configuration_no_server": "不正な設定:デフォルトのサーバーが設定されていません。",
"Unable to load config file: please refresh the page to try again.": "設定ファイルの読み込みに失敗しました:ページを再読み込みして、もう一度やり直してください。", "invalid_json": "Elementの設定ファイルに不正なJSONが含まれています。問題を修正してからページを再読み込みしてください。",
"Download Completed": "ダウンロードが完了しました", "invalid_json_detail": "パーサーのメッセージ:%(message)s",
"Open": "開く", "invalid_json_generic": "不正なJSON",
"Go to your browser to complete Sign In": "ブラウザーに移動してサインインを完了してください", "misconfigured": "Elementの設定が誤っています"
"Unsupported browser": "サポートされていないブラウザー", },
"Go to element.io": "element.ioへ移動", "failed_to_start": "起動に失敗しました",
"Failed to start": "起動に失敗しました", "go_to_element_io": "element.ioへ移動",
"Your Element is misconfigured": "Elementの設定が誤っています", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Elementの設定ファイルに不正なJSONが含まれています。問題を修正してからページを再読み込みしてください。", "browser_links": "最高のユーザー体験を得るためには、<chromeLink>Chrome</chromeLink>か<firefoxLink>Firefox</firefoxLink>、もしくは<safariLink>Safari</safariLink>をインストールしてください。",
"Your browser can't run %(brand)s": "このブラウザーでは%(brand)sが動きません", "continue_warning": "リスクを理解して続行",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)sはブラウザーの高度な機能を使う必要がありますが、このブラウザーではその機能がサポートされていないようです。", "feature_warning": "現在のブラウザーを使い続けることもできますが、いくつか(もしくは全ての)機能が動作しなかったり、外観が崩れたりする可能性があります。",
"Powered by Matrix": "Powered by Matrix", "features": "%(brand)sはブラウザーの高度な機能を使う必要がありますが、このブラウザーではその機能がサポートされていないようです。",
"Use %(brand)s on mobile": "携帯端末で%(brand)sを使用できます", "summary": "このブラウザーでは%(brand)sが動きません",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "$matrixLogo による、分散型で暗号化された会話とコラボレーション", "title": "サポートされていないブラウザー"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s %(osName)sの%(browserName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)sデスクトップ%(platformName)s" "powered_by_matrix_with_logo": "$matrixLogo による、分散型で暗号化された会話とコラボレーション",
"unknown_device": "不明な端末",
"use_brand_on_mobile": "携帯端末で%(brand)sを使用できます",
"web_default_device_name": "%(appName)s %(osName)sの%(browserName)s",
"welcome_to_element": "Elementにようこそ"
} }

View File

@ -1,27 +1,37 @@
{ {
"Unknown device": "se samtcise'u vau je na slabu", "error": {
"Dismiss": "nu mipri", "invalid_configuration_no_server": ".i le tcimi'e vreji na drani le ka jai do'e zmicu'a fo le ka samtcise'u",
"Invalid JSON": ".i le veirdjeisano na drani", "misconfigured": ".i le tcimi'e be la .elyment. be'o vreji na drani",
"Download Completed": ".i mo'u kibycpa", "invalid_json": ".i le tcimi'e be la .elyment. be'o vreji na drani le ka veirdjeisano .i gau ko drani je ba kibycpa le kibypapri",
"Open": "nu viska", "invalid_json_detail": ".i notci fi le genturfa'i fa zoi zoi. %(message)s .zoi",
"Go to your browser to complete Sign In": ".i do ka'e pilno pa kibrbrauzero lo nu mo'u co'a jaspu", "invalid_json_generic": ".i le veirdjeisano na drani",
"Unsupported browser": ".i le kibrbrauzero na kakne", "cannot_load_config": ".i da nabmi fi lo nu samymo'i le tcimi'e vreji .i ko ba zukte le ka kibycpa le kibypapri kei le ka troci",
"Your browser can't run %(brand)s": ".i na ka'e pilno le kibrbrauzero lo nu pilno la'o zoi. %(brand)s .zoi", "app_launch_unexpected_error": ".i da nabmi fi lo nu co'a ka'e pilno le samtci .i ko tcidu le notci be fi le samymi'etci"
"%(brand)s uses advanced browser features which aren't supported by your current browser.": ".i la'o zoi. %(brand)s .zoi pilno pa na jai se kakne be le kibrbrauzero", },
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": ".i ko ci'erse'a <chromeLink>la .krom.</chromeLink> ja <firefoxLink>la .fairfoks.</firefoxLink> ja <safariLink>la .safaris.</safariLink>", "download_completed": ".i mo'u kibycpa",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": ".i do ka'e za'o pilno le kibrbrauzero .i ku'i la'a spofu pa jo nai ro te pilno vau je na drani fa le jvinu", "action": {
"I understand the risks and wish to continue": ".i mi jimpe le du'u ckape vau vau je za'o djica", "open": "nu viska",
"Go to element.io": "nu viska le se judri be zoi zoi. element.io .zoi", "dismiss": "nu mipri"
"Failed to start": ".i da nabmi fi lo nu co'a pilno", },
"Welcome to Element": ".i fi'i zo'e do pilno la .elyment.", "auth": {
"Sign In": "nu co'a jaspu", "sso_complete_in_browser_dialog_title": ".i do ka'e pilno pa kibrbrauzero lo nu mo'u co'a jaspu"
"Create Account": "nu pa re'u co'a jaspu", },
"Explore rooms": "nu facki le du'u ve zilbe'i", "unknown_device": "se samtcise'u vau je na slabu",
"Invalid configuration: no default server specified.": ".i le tcimi'e vreji na drani le ka jai do'e zmicu'a fo le ka samtcise'u", "powered_by_matrix": ".i la .meitriks. cu jicmu",
"Your Element is misconfigured": ".i le tcimi'e be la .elyment. be'o vreji na drani", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": ".i le tcimi'e be la .elyment. be'o vreji na drani le ka veirdjeisano .i gau ko drani je ba kibycpa le kibypapri", "title": ".i le kibrbrauzero na kakne",
"The message from the parser is: %(message)s": ".i notci fi le genturfa'i fa zoi zoi. %(message)s .zoi", "summary": ".i na ka'e pilno le kibrbrauzero lo nu pilno la'o zoi. %(brand)s .zoi",
"Unable to load config file: please refresh the page to try again.": ".i da nabmi fi lo nu samymo'i le tcimi'e vreji .i ko ba zukte le ka kibycpa le kibypapri kei le ka troci", "features": ".i la'o zoi. %(brand)s .zoi pilno pa na jai se kakne be le kibrbrauzero",
"Unexpected error preparing the app. See console for details.": ".i da nabmi fi lo nu co'a ka'e pilno le samtci .i ko tcidu le notci be fi le samymi'etci", "browser_links": ".i ko ci'erse'a <chromeLink>la .krom.</chromeLink> ja <firefoxLink>la .fairfoks.</firefoxLink> ja <safariLink>la .safaris.</safariLink>",
"Powered by Matrix": ".i la .meitriks. cu jicmu" "feature_warning": ".i do ka'e za'o pilno le kibrbrauzero .i ku'i la'a spofu pa jo nai ro te pilno vau je na drani fa le jvinu",
"continue_warning": ".i mi jimpe le du'u ckape vau vau je za'o djica"
},
"go_to_element_io": "nu viska le se judri be zoi zoi. element.io .zoi",
"failed_to_start": ".i da nabmi fi lo nu co'a pilno",
"welcome_to_element": ".i fi'i zo'e do pilno la .elyment.",
"common": {
"sign_in": "nu co'a jaspu",
"create_account": "nu pa re'u co'a jaspu",
"explore_rooms": "nu facki le du'u ve zilbe'i"
}
} }

View File

@ -1,32 +1,37 @@
{ {
"Unknown device": "უცნობი მოწყობილობა", "action": {
"Dismiss": "დახურვა", "dismiss": "დახურვა",
"Welcome to Element": "კეთილი იყოს თქვენი მობრძანება Element-ზე", "open": "გახსნა"
"Explore rooms": "ოთახების დათავლიერება", },
"Failed to start": "ჩართვა ვერ მოხერხდა", "auth": {
"Use %(brand)s on mobile": "გამოიყენე %(brand)s-ი მობილურზე", "sso_complete_in_browser_dialog_title": "გადადით თქვენს ბრაუზერში შესვლის დასასრულებლად"
"Unexpected error preparing the app. See console for details.": "მოულოდნელი ერორი აპლიკაციის შემზადებისას. იხილეთ კონსოლი დეტალებისთვის.", },
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "თქვენი Element-ის კონფიგურაცია შეიცავს მიუღებელ JSON-ს. გთხოვთ, გამოასწოროთ პრობლემა და გადატვირთოთ გვერდი.", "desktop_default_device_name": "%(brand)s სამუშაო მაგიდა: %(platformName)s",
"Sign In": "შესვლა", "download_completed": "გადმოწერა დასრულებულია",
"Invalid configuration: no default server specified.": "არასწორი კონფიგურაცია: მთავარი სერვერი არ არის მითითებული.", "error": {
"Create Account": "ანგარიშის შექმნა", "app_launch_unexpected_error": "მოულოდნელი ერორი აპლიკაციის შემზადებისას. იხილეთ კონსოლი დეტალებისთვის.",
"Go to element.io": "გადადი element.io-ზე", "cannot_load_config": "კონფიგურაციის ფაილის ჩატვირთვა შეუძლებელია: გთხოვთ, განაახლოთ გვერდი ხელახლა საცდელად.",
"I understand the risks and wish to continue": "მესმის რისკები და მსურს გაგრძელება", "invalid_configuration_mixed_server": "არასწორი კონფიგურაცია: default_hs_url არ შეიძლება მითითებული იყოს default_server_name ან default_server_config-თან ერთად",
"Unsupported browser": "ბრაუზერი არ არის მხარდაჭერილი", "invalid_configuration_no_server": "არასწორი კონფიგურაცია: მთავარი სერვერი არ არის მითითებული.",
"Your browser can't run %(brand)s": "შენ ბრაუზერს არ შეუძლია გაუშვას %(brand)s-ი", "invalid_json": "თქვენი Element-ის კონფიგურაცია შეიცავს მიუღებელ JSON-ს. გთხოვთ, გამოასწოროთ პრობლემა და გადატვირთოთ გვერდი.",
"Unable to load config file: please refresh the page to try again.": "კონფიგურაციის ფაილის ჩატვირთვა შეუძლებელია: გთხოვთ, განაახლოთ გვერდი ხელახლა საცდელად.", "invalid_json_detail": "პარსერის შეტყობინებაა: %(message)s",
"Invalid JSON": "არასწორი JSON", "invalid_json_generic": "არასწორი JSON",
"Your Element is misconfigured": "შენი Element-ი არასწორადაა კონფიგურირებული", "misconfigured": "შენი Element-ი არასწორადაა კონფიგურირებული"
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "გთხოვთ დააინსტალოთ <chromeLink>Chrome-ი</chromeLink>, <firefoxLink>Firefox-ი</firefoxLink>, ან <safariLink>Safari</safariLink> საუკეთესო გამოცდილებისთვის.", },
"Powered by Matrix": "უზრუნველყოფილია Matrix-ის მიერ", "failed_to_start": "ჩართვა ვერ მოხერხდა",
"Go to your browser to complete Sign In": "გადადით თქვენს ბრაუზერში შესვლის დასასრულებლად", "go_to_element_io": "გადადი element.io-ზე",
"Open": "გახსნა", "incompatible_browser": {
"Download Completed": "გადმოწერა დასრულებულია", "browser_links": "გთხოვთ დააინსტალოთ <chromeLink>Chrome-ი</chromeLink>, <firefoxLink>Firefox-ი</firefoxLink>, ან <safariLink>Safari</safariLink> საუკეთესო გამოცდილებისთვის.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "დეცენტრალიზებული, დაშიფრული ჩატი & amp; $matrixLogo-ს მიერ შექმნილი თანამშრომლობა", "continue_warning": "მესმის რისკები და მსურს გაგრძელება",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "შეგიძლიათ გააგრძელოთ თქვენი ამჟამინდელი ბრაუზერის გამოყენება, მაგრამ ზოგიერთი ან ყველა ფუნქცია შეიძლება არ იმუშაოს და აპლიკაციის გარეგნობა და შეგრძნება შეიძლება არასწორი იყოს.", "feature_warning": "შეგიძლიათ გააგრძელოთ თქვენი ამჟამინდელი ბრაუზერის გამოყენება, მაგრამ ზოგიერთი ან ყველა ფუნქცია შეიძლება არ იმუშაოს და აპლიკაციის გარეგნობა და შეგრძნება შეიძლება არასწორი იყოს.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s იყენებს ბრაუზერის გაფართოებულ ფუნქციებს, რომლებიც არ არის მხარდაჭერილი თქვენი ამჟამინდელი ბრაუზერის მიერ.", "features": "%(brand)s იყენებს ბრაუზერის გაფართოებულ ფუნქციებს, რომლებიც არ არის მხარდაჭერილი თქვენი ამჟამინდელი ბრაუზერის მიერ.",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s %(osName)s-ზე", "summary": "შენ ბრაუზერს არ შეუძლია გაუშვას %(brand)s-ი",
"%(brand)s Desktop: %(platformName)s": "%(brand)s სამუშაო მაგიდა: %(platformName)s", "title": "ბრაუზერი არ არის მხარდაჭერილი"
"The message from the parser is: %(message)s": "პარსერის შეტყობინებაა: %(message)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "არასწორი კონფიგურაცია: default_hs_url არ შეიძლება მითითებული იყოს default_server_name ან default_server_config-თან ერთად" "powered_by_matrix": "უზრუნველყოფილია Matrix-ის მიერ",
"powered_by_matrix_with_logo": "დეცენტრალიზებული, დაშიფრული ჩატი & amp; $matrixLogo-ს მიერ შექმნილი თანამშრომლობა",
"unknown_device": "უცნობი მოწყობილობა",
"use_brand_on_mobile": "გამოიყენე %(brand)s-ი მობილურზე",
"web_default_device_name": "%(appName)s: %(browserName)s %(osName)s-ზე",
"welcome_to_element": "კეთილი იყოს თქვენი მობრძანება Element-ზე"
} }

View File

@ -1,28 +1,33 @@
{ {
"Invalid JSON": "JSON armeɣtu", "action": {
"Go to your browser to complete Sign In": "Ddu ɣer iminig akken ad tkemleḍ ajerred", "dismiss": "Agwi",
"Unknown device": "Ibenk arussin", "open": "Ldi"
"Create Account": "Rnu amiḍan", },
"Dismiss": "Agwi", "auth": {
"Sign In": "Kcem", "sso_complete_in_browser_dialog_title": "Ddu ɣer iminig akken ad tkemleḍ ajerred"
"Explore rooms": "Snirem tixxamin", },
"Invalid configuration: no default server specified.": "Tawila d tarmeɣtut: ulac aqeddac amezwer i d-yettwafernen.", "download_completed": "Asider yemmed",
"The message from the parser is: %(message)s": "Izen n umaslaḍ d: %(message)s", "error": {
"Unable to load config file: please refresh the page to try again.": "Yegguma ad d-yali ufaylu n twila: ma ulac aɣilif smiren asebter akken ad tεerḍeḍ tikkelt-nniḍen.", "app_launch_unexpected_error": "Tella-d tuccḍa lawan n uheyyi n usnas: Wali tadiwent i wugar telqeyt.",
"Unexpected error preparing the app. See console for details.": "Tella-d tuccḍa lawan n uheyyi n usnas: Wali tadiwent i wugar telqeyt.", "cannot_load_config": "Yegguma ad d-yali ufaylu n twila: ma ulac aɣilif smiren asebter akken ad tεerḍeḍ tikkelt-nniḍen.",
"Unsupported browser": "Ur yettusefrak ara yiminig", "invalid_configuration_no_server": "Tawila d tarmeɣtut: ulac aqeddac amezwer i d-yettwafernen.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Ma ulac aɣilif, sebded <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, neɣ<safariLink>Safari</safariLink> i tirmit igerrzen.", "invalid_json": "Deg twila n uferdis-inek·inem yella JSON d arameɣtu. Ttxil-k·m seɣti ugur syen ales asali n usebter.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Tzemreḍ ad tkemmleḍ deg useqdec n yiminig-ik(im) amiran, maca kra n tmahilin neɣ akk zemrent ur nteddu ara, rnu arwes n usnas yezmer ad d-iban d armeɣtu.", "invalid_json_detail": "Izen n umaslaḍ d: %(message)s",
"I understand the risks and wish to continue": "Gziɣ ayen ara d-yeḍrun maca bɣiɣ ad kemmleɣ", "invalid_json_generic": "JSON armeɣtu",
"Go to element.io": "Ṛuḥ ɣer element.io", "misconfigured": "Aferdis-inek·inem ur yettuswel ara akken iwata"
"Failed to start": "Asenker ur yeddi ara", },
"Welcome to Element": "Ansuf ɣer Element", "failed_to_start": "Asenker ur yeddi ara",
"Your Element is misconfigured": "Aferdis-inek·inem ur yettuswel ara akken iwata", "go_to_element_io": "Ṛuḥ ɣer element.io",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Deg twila n uferdis-inek·inem yella JSON d arameɣtu. Ttxil-k·m seɣti ugur syen ales asali n usebter.", "incompatible_browser": {
"Download Completed": "Asider yemmed", "browser_links": "Ma ulac aɣilif, sebded <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, neɣ<safariLink>Safari</safariLink> i tirmit igerrzen.",
"Open": "Ldi", "continue_warning": "Gziɣ ayen ara d-yeḍrun maca bɣiɣ ad kemmleɣ",
"Your browser can't run %(brand)s": "Iminig-inek·inem ur isselkan ara %(brand)s", "feature_warning": "Tzemreḍ ad tkemmleḍ deg useqdec n yiminig-ik(im) amiran, maca kra n tmahilin neɣ akk zemrent ur nteddu ara, rnu arwes n usnas yezmer ad d-iban d armeɣtu.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s isseqdac timahilin n yiminig leqqayen ur yessefrak ara yiminig-ik·im amiran.", "features": "%(brand)s isseqdac timahilin n yiminig leqqayen ur yessefrak ara yiminig-ik·im amiran.",
"Powered by Matrix": "Iteddu s lmendad n Matrix", "summary": "Iminig-inek·inem ur isselkan ara %(brand)s",
"Use %(brand)s on mobile": "Seqdec %(brand)s deg tiliɣri" "title": "Ur yettusefrak ara yiminig"
},
"powered_by_matrix": "Iteddu s lmendad n Matrix",
"unknown_device": "Ibenk arussin",
"use_brand_on_mobile": "Seqdec %(brand)s deg tiliɣri",
"welcome_to_element": "Ansuf ɣer Element"
} }

View File

@ -1,32 +1,37 @@
{ {
"Dismiss": "버리기", "action": {
"Unknown device": "알 수 없는 기기", "dismiss": "버리기",
"Welcome to Element": "Element에 오신 것을 환영합니다", "open": "열기"
"The message from the parser is: %(message)s": "파서에서 온 메시지: %(message)s", },
"Invalid JSON": "유효하지 않은 JSON", "auth": {
"Unexpected error preparing the app. See console for details.": "앱을 준비하는 동안 예기치 않은 오류가 발생했습니다. 자세한 내용은 콘솔을 확인하세요.", "sso_complete_in_browser_dialog_title": "로그인을 완료하려면 브라우저로 이동해주세요"
"Invalid configuration: no default server specified.": "잘못된 설정: 기본 서버가 지정되지 않았습니다.", },
"Sign In": "로그인", "desktop_default_device_name": "%(brand)s 데스크탑: %(platformName)s",
"Create Account": "계정 만들기", "download_completed": "다운로드 완료",
"Explore rooms": "방 검색", "error": {
"Unable to load config file: please refresh the page to try again.": "설정 파일을 불러오는 데 실패: 페이지를 새로고침한 후에 다시 시도해 주십시오.", "app_launch_unexpected_error": "앱을 준비하는 동안 예기치 않은 오류가 발생했습니다. 자세한 내용은 콘솔을 확인하세요.",
"Go to your browser to complete Sign In": "로그인을 완료하려면 브라우저로 이동해주세요", "cannot_load_config": "설정 파일을 불러오는 데 실패: 페이지를 새로고침한 후에 다시 시도해 주십시오.",
"Unsupported browser": "지원되지 않는 브라우저", "invalid_configuration_mixed_server": "구성이 잘못되었습니다: default_server_name 또는 default_server_config와 함께 default_hs_url을 지정할 수 없습니다.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "최상의 경험을 위해 <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, 또는 <safariLink>Safari</safariLink>를 설치해주세요.", "invalid_configuration_no_server": "잘못된 설정: 기본 서버가 지정되지 않았습니다.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "현재 사용 중인 브라우저를 계속 사용할 수 있지만, 일부 기능들이 작동하지 않거나 애플리케이션이 올바르게 보여지지 않을 수 있습니다.", "invalid_json": "당신의 Element 설정은 유효하지 않은 JSON을 포함합니다. 이 문제를 해결하고 페이지를 새로고침해주세요.",
"I understand the risks and wish to continue": "위험하다는 것을 이해했으며 계속하고 싶습니다", "invalid_json_detail": "파서에서 온 메시지: %(message)s",
"Go to element.io": "element.io 로 이동", "invalid_json_generic": "유효하지 않은 JSON",
"Failed to start": "시작 실패", "misconfigured": "당신의 Element가 잘못 설정되었습니다"
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s 는 당신의 브라우저에서 지원되지 않는 고급 기능을 사용합니다.", },
"Your browser can't run %(brand)s": "당신의 브라우저는 %(brand)s 를 작동할 수 없습니다", "failed_to_start": "시작 실패",
"Use %(brand)s on mobile": "모바일에서 %(brand)s 사용", "go_to_element_io": "element.io 로 이동",
"Powered by Matrix": "Matrix로 지원됨", "incompatible_browser": {
"Open": "열기", "browser_links": "최상의 경험을 위해 <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, 또는 <safariLink>Safari</safariLink>를 설치해주세요.",
"Download Completed": "다운로드 완료", "continue_warning": "위험하다는 것을 이해했으며 계속하고 싶습니다",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "당신의 Element 설정은 유효하지 않은 JSON을 포함합니다. 이 문제를 해결하고 페이지를 새로고침해주세요.", "feature_warning": "현재 사용 중인 브라우저를 계속 사용할 수 있지만, 일부 기능들이 작동하지 않거나 애플리케이션이 올바르게 보여지지 않을 수 있습니다.",
"Your Element is misconfigured": "당신의 Element가 잘못 설정되었습니다", "features": "%(brand)s 는 당신의 브라우저에서 지원되지 않는 고급 기능을 사용합니다.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "$matrixLogo 에서 제공하는 탈중앙화되고 암호화된 협업", "summary": "당신의 브라우저는 %(brand)s 를 작동할 수 없습니다",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(osName)s 의 %(browserName)s", "title": "지원되지 않는 브라우저"
"%(brand)s Desktop: %(platformName)s": "%(brand)s 데스크탑: %(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "구성이 잘못되었습니다: default_server_name 또는 default_server_config와 함께 default_hs_url을 지정할 수 없습니다." "powered_by_matrix": "Matrix로 지원됨",
"powered_by_matrix_with_logo": "$matrixLogo 에서 제공하는 탈중앙화되고 암호화된 협업",
"unknown_device": "알 수 없는 기기",
"use_brand_on_mobile": "모바일에서 %(brand)s 사용",
"web_default_device_name": "%(appName)s: %(osName)s 의 %(browserName)s",
"welcome_to_element": "Element에 오신 것을 환영합니다"
} }

View File

@ -1,29 +1,34 @@
{ {
"Open": "ເປີດ", "action": {
"Explore rooms": "ສຳຫຼວດບັນດາຫ້ອງ", "dismiss": "ຍົກເລີກ",
"Create Account": "ສ້າງບັນຊີ", "open": "ເປີດ"
"Sign In": "ເຂົ້າສູ່ລະບົບ", },
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "ການສົນທະນາແບບເຂົ້າລະຫັດ ແລະກະຈ່າຍການຄຸ້ມຄອງ &amp; ການຮ່ວມມື້ ແລະສະໜັບສະໜູນໂດຍ $matrixLogo", "auth": {
"Welcome to Element": "ຍິນດີຕ້ອນຮັບ", "sso_complete_in_browser_dialog_title": "ໄປທີ່ໜ້າເວັບຂອງທ່ານເພື່ອເຂົ້າສູ່ລະບົບ"
"Failed to start": "ບໍ່ສາມາດເປີດໄດ້", },
"Go to element.io": "ໄປຫາ element.io", "download_completed": "ດາວໂຫຼດສຳເລັດແລ້ວ",
"I understand the risks and wish to continue": "ຂ້າພະເຈົ້າເຂົ້າໃຈຄວາມສ່ຽງ ແລະຢາກສືບຕໍ່", "error": {
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "ທ່ານສາມາດສືບຕໍ່ນຳໃຊ້ບຣາວເຊີປັດຈຸບັນຂອງເຈົ້າໄດ້, ແຕ່ບາງຄຸນສົມບັດ ຫຼື ທັງໝົດອາດຈະບໍ່ເຮັດວຽກ ແລະ ລັກສະນະ ແລະ ຄວາມຮູ້ສຶກຂອງແອັບພລິເຄຊັນອາດບໍ່ຖືກຕ້ອງ.", "app_launch_unexpected_error": "ເກີດຄວາມຜິດພາດທີ່ບໍ່ຄາດຄິດໃນການກະກຽມແອັບຯ. ເບິ່ງ console ສໍາລັບລາຍລະອຽດ.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "ກະລຸນາຕິດຕັ້ງ <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> ສຳລັບປະສົບການທີ່ດີທີ່ສຸດ.", "cannot_load_config": "ບໍ່ສາມາດໂຫຼດໄຟລ໌ config ໄດ້: ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່ເພື່ອລອງອີກຄັ້ງ.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s ໃຊ້ຄຸນສົມບັດຂອງບຣາວເຊີຂັ້ນສູງທີ່ບຼາວເຊີປັດຈຸບັນຂອງທ່ານຍັງບໍ່ຮອງຮັບ.", "invalid_configuration_no_server": "ການຕັ້ງຄ່າບໍ່ຖືກຕ້ອງ: ບໍ່ໄດ້ລະບຸເຊີບເວີເລີ່ມຕົ້ນ.",
"Your browser can't run %(brand)s": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມາດແລ່ນ %(brand)s ໄດ້", "invalid_json": "ການຕັ້ງຄ່າແອັບ Element ຂອງທ່ານມີຄ່າ JSON ທີ່ບໍ່ຖືກຕ້ອງ. ກະລຸນາແກ້ໄຂບັນຫາ ແລະໂຫຼດໜ້ານີ້ຄືນໃໝ່.",
"Unsupported browser": "ບໍ່ຮັບຮອງເວັບບຣາວເຊີນີ້", "invalid_json_detail": "ຂໍ້ຄວາມຈາກຕົວປ່ຽນແມ່ນ: %(message)s",
"Use %(brand)s on mobile": "ໃຊ້ມືຖື %(brand)s", "invalid_json_generic": "JSON ບໍ່ຖືກຕ້ອງ",
"Powered by Matrix": "ສະໜັບສະໜູນໂດຍ Matrix", "misconfigured": "ການຕັ້ງຄ່າແອັບ Element ຂອງທ່ານບໍ່ຖືກຕ້ອງ"
"Unknown device": "ທີ່ບໍ່ຮູ້ຈັກອຸປະກອນນີ້", },
"Go to your browser to complete Sign In": "ໄປທີ່ໜ້າເວັບຂອງທ່ານເພື່ອເຂົ້າສູ່ລະບົບ", "failed_to_start": "ບໍ່ສາມາດເປີດໄດ້",
"Dismiss": "ຍົກເລີກ", "go_to_element_io": "ໄປຫາ element.io",
"Download Completed": "ດາວໂຫຼດສຳເລັດແລ້ວ", "incompatible_browser": {
"Unexpected error preparing the app. See console for details.": "ເກີດຄວາມຜິດພາດທີ່ບໍ່ຄາດຄິດໃນການກະກຽມແອັບຯ. ເບິ່ງ console ສໍາລັບລາຍລະອຽດ.", "browser_links": "ກະລຸນາຕິດຕັ້ງ <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> ສຳລັບປະສົບການທີ່ດີທີ່ສຸດ.",
"Unable to load config file: please refresh the page to try again.": "ບໍ່ສາມາດໂຫຼດໄຟລ໌ config ໄດ້: ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່ເພື່ອລອງອີກຄັ້ງ.", "continue_warning": "ຂ້າພະເຈົ້າເຂົ້າໃຈຄວາມສ່ຽງ ແລະຢາກສືບຕໍ່",
"Invalid JSON": "JSON ບໍ່ຖືກຕ້ອງ", "feature_warning": "ທ່ານສາມາດສືບຕໍ່ນຳໃຊ້ບຣາວເຊີປັດຈຸບັນຂອງເຈົ້າໄດ້, ແຕ່ບາງຄຸນສົມບັດ ຫຼື ທັງໝົດອາດຈະບໍ່ເຮັດວຽກ ແລະ ລັກສະນະ ແລະ ຄວາມຮູ້ສຶກຂອງແອັບພລິເຄຊັນອາດບໍ່ຖືກຕ້ອງ.",
"The message from the parser is: %(message)s": "ຂໍ້ຄວາມຈາກຕົວປ່ຽນແມ່ນ: %(message)s", "features": "%(brand)s ໃຊ້ຄຸນສົມບັດຂອງບຣາວເຊີຂັ້ນສູງທີ່ບຼາວເຊີປັດຈຸບັນຂອງທ່ານຍັງບໍ່ຮອງຮັບ.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "ການຕັ້ງຄ່າແອັບ Element ຂອງທ່ານມີຄ່າ JSON ທີ່ບໍ່ຖືກຕ້ອງ. ກະລຸນາແກ້ໄຂບັນຫາ ແລະໂຫຼດໜ້ານີ້ຄືນໃໝ່.", "summary": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມາດແລ່ນ %(brand)s ໄດ້",
"Your Element is misconfigured": "ການຕັ້ງຄ່າແອັບ Element ຂອງທ່ານບໍ່ຖືກຕ້ອງ", "title": "ບໍ່ຮັບຮອງເວັບບຣາວເຊີນີ້"
"Invalid configuration: no default server specified.": "ການຕັ້ງຄ່າບໍ່ຖືກຕ້ອງ: ບໍ່ໄດ້ລະບຸເຊີບເວີເລີ່ມຕົ້ນ." },
"powered_by_matrix": "ສະໜັບສະໜູນໂດຍ Matrix",
"powered_by_matrix_with_logo": "ການສົນທະນາແບບເຂົ້າລະຫັດ ແລະກະຈ່າຍການຄຸ້ມຄອງ &amp; ການຮ່ວມມື້ ແລະສະໜັບສະໜູນໂດຍ $matrixLogo",
"unknown_device": "ທີ່ບໍ່ຮູ້ຈັກອຸປະກອນນີ້",
"use_brand_on_mobile": "ໃຊ້ມືຖື %(brand)s",
"welcome_to_element": "ຍິນດີຕ້ອນຮັບ"
} }

View File

@ -1,30 +1,35 @@
{ {
"Unknown device": "Nežinomas įrenginys", "action": {
"Welcome to Element": "Sveiki atvykę į Element", "dismiss": "Atmesti",
"Dismiss": "Atmesti", "open": "Atidaryti"
"Sign In": "Prisijungti", },
"Create Account": "Sukurti Paskyrą", "auth": {
"Explore rooms": "Žvalgyti kambarius", "sso_complete_in_browser_dialog_title": "Norėdami užbaigti prisijungimą, eikite į naršyklę"
"The message from the parser is: %(message)s": "Analizatoriaus žinutė yra: %(message)s", },
"Invalid JSON": "Klaidingas JSON", "desktop_default_device_name": "%(brand)s Kompiuteryje: %(platformName)s",
"Unexpected error preparing the app. See console for details.": "Netikėta klaida ruošiant programą. Norėdami sužinoti daugiau detalių, žiūrėkite konsolę.", "download_completed": "Atsisiuntimas baigtas",
"Invalid configuration: no default server specified.": "Klaidinga konfigūracija: nenurodytas numatytasis serveris.", "error": {
"Go to your browser to complete Sign In": "Norėdami užbaigti prisijungimą, eikite į naršyklę", "app_launch_unexpected_error": "Netikėta klaida ruošiant programą. Norėdami sužinoti daugiau detalių, žiūrėkite konsolę.",
"Unable to load config file: please refresh the page to try again.": "Nepavyko įkelti konfigūracijos failo: atnaujinkite puslapį, kad pabandytumėte dar kartą.", "cannot_load_config": "Nepavyko įkelti konfigūracijos failo: atnaujinkite puslapį, kad pabandytumėte dar kartą.",
"Unsupported browser": "Nepalaikoma naršyklė", "invalid_configuration_no_server": "Klaidinga konfigūracija: nenurodytas numatytasis serveris.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Jūs galite toliau naudotis savo dabartine naršykle, bet kai kurios arba visos funkcijos gali neveikti ir programos išvaizda bei sąsaja gali būti neteisingai rodoma.", "invalid_json": "Jūsų Element konfigūracijoje yra klaidingas JSON. Ištaisykite problemą ir iš naujo įkelkite puslapį.",
"I understand the risks and wish to continue": "Suprantu šią riziką ir noriu tęsti", "invalid_json_detail": "Analizatoriaus žinutė yra: %(message)s",
"Go to element.io": "Eiti į element.io", "invalid_json_generic": "Klaidingas JSON",
"Failed to start": "Nepavyko paleisti", "misconfigured": "Jūsų Element yra neteisingai sukonfigūruotas"
"Your Element is misconfigured": "Jūsų Element yra neteisingai sukonfigūruotas", },
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Jūsų Element konfigūracijoje yra klaidingas JSON. Ištaisykite problemą ir iš naujo įkelkite puslapį.", "failed_to_start": "Nepavyko paleisti",
"Download Completed": "Atsisiuntimas baigtas", "go_to_element_io": "Eiti į element.io",
"Open": "Atidaryti", "incompatible_browser": {
"Your browser can't run %(brand)s": "Jūsų naršyklė negali paleisti %(brand)s", "browser_links": "Geriausiam veikimui suinstaliuokite <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, arba <safariLink>Safari</safariLink>.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s naudoja išplėstines naršyklės funkcijas, kurių jūsų dabartinė naršyklė nepalaiko.", "continue_warning": "Suprantu šią riziką ir noriu tęsti",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Geriausiam veikimui suinstaliuokite <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, arba <safariLink>Safari</safariLink>.", "feature_warning": "Jūs galite toliau naudotis savo dabartine naršykle, bet kai kurios arba visos funkcijos gali neveikti ir programos išvaizda bei sąsaja gali būti neteisingai rodoma.",
"Powered by Matrix": "Veikia su Matrix", "features": "%(brand)s naudoja išplėstines naršyklės funkcijas, kurių jūsų dabartinė naršyklė nepalaiko.",
"Use %(brand)s on mobile": "Naudoti %(brand)s mobiliajame telefone", "summary": "Jūsų naršyklė negali paleisti %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentralizuotas, užšifruotų pokalbių &amp; bendradarbiavimas, paremtas $matrixLogo", "title": "Nepalaikoma naršyklė"
"%(brand)s Desktop: %(platformName)s": "%(brand)s Kompiuteryje: %(platformName)s" },
"powered_by_matrix": "Veikia su Matrix",
"powered_by_matrix_with_logo": "Decentralizuotas, užšifruotų pokalbių &amp; bendradarbiavimas, paremtas $matrixLogo",
"unknown_device": "Nežinomas įrenginys",
"use_brand_on_mobile": "Naudoti %(brand)s mobiliajame telefone",
"welcome_to_element": "Sveiki atvykę į Element"
} }

View File

@ -1,32 +1,37 @@
{ {
"Dismiss": "Atmest", "action": {
"Unknown device": "Nezināma ierīce", "dismiss": "Atmest",
"Welcome to Element": "Laipni lūdzam Element!", "open": "Atvērt"
"Sign In": "Pieteikties", },
"Create Account": "Izveidot kontu", "auth": {
"Explore rooms": "Pārlūkot istabas", "sso_complete_in_browser_dialog_title": "Jādodas uz pārlūku, lai pabeigtu pieteikšanos"
"Unexpected error preparing the app. See console for details.": "Lietotnes sagatavošanā gadījās negaidīta kļūda. Izvērsums ir atrodams konsolē.", },
"Invalid configuration: no default server specified.": "Nederīga konfigurācija: nav norādīts noklusējuma serveris.", "desktop_default_device_name": "%(brand)s darbvirsma: %(platformName)s",
"The message from the parser is: %(message)s": "Ziņa no parsētāja ir: %(message)s", "download_completed": "Lejupielāde ir pabeigta",
"Invalid JSON": "Nederīgs JSON", "error": {
"Unable to load config file: please refresh the page to try again.": "Neizdevās ielādēt konfigurācijas datni. Lūgums pārlādēt lapu, lai mēģinātu vēlreiz.", "app_launch_unexpected_error": "Lietotnes sagatavošanā gadījās negaidīta kļūda. Izvērsums ir atrodams konsolē.",
"Go to your browser to complete Sign In": "Jādodas uz pārlūku, lai pabeigtu pieteikšanos", "cannot_load_config": "Neizdevās ielādēt konfigurācijas datni. Lūgums pārlādēt lapu, lai mēģinātu vēlreiz.",
"Unsupported browser": "Neatbalstīts pārlūks", "invalid_configuration_mixed_server": "Nederīga konfigurācija: default_hs_url nevar būt norādīts vienlaicīgi ar default_server_name vai default_server_config",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Lūgums uzstādīt <chromeLink>Chromium</chromeLink>, <firefoxLink>Firefox</firefoxLink> vai <safariLink>Safari</safariLink>, lai gūtu labāko lietošanas pieredzi.", "invalid_configuration_no_server": "Nederīga konfigurācija: nav norādīts noklusējuma serveris.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Var turpināt izmantot savu pašreizējo pārlūku, bet dažas iespējas nedarbosies, un lietotnes izskats un saskarne var būt nepilnīga.", "invalid_json": "Element konfigurācija satur nederīgu JSON. Lūgums novērst kļūmi un pārlādēt lapu.",
"I understand the risks and wish to continue": "Es apzinos iespējamās sekas un vēlos turpināt", "invalid_json_detail": "Ziņa no parsētāja ir: %(message)s",
"Go to element.io": "Doties uz element.io", "invalid_json_generic": "Nederīgs JSON",
"Failed to start": "Neizdevās palaist", "misconfigured": "Element ir kļūdaini iestatīts"
"Powered by Matrix": "Darbina Matrix", },
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s izmanto pārlūku iespējas, kuras nav pieejamas šajā pārlūkā.", "failed_to_start": "Neizdevās palaist",
"Your browser can't run %(brand)s": "Šajā pārlūkā nevar palaist %(brand)s", "go_to_element_io": "Doties uz element.io",
"Open": "Atvērt", "incompatible_browser": {
"Download Completed": "Lejupielāde ir pabeigta", "browser_links": "Lūgums uzstādīt <chromeLink>Chromium</chromeLink>, <firefoxLink>Firefox</firefoxLink> vai <safariLink>Safari</safariLink>, lai gūtu labāko lietošanas pieredzi.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Element konfigurācija satur nederīgu JSON. Lūgums novērst kļūmi un pārlādēt lapu.", "continue_warning": "Es apzinos iespējamās sekas un vēlos turpināt",
"Your Element is misconfigured": "Element ir kļūdaini iestatīts", "feature_warning": "Var turpināt izmantot savu pašreizējo pārlūku, bet dažas iespējas nedarbosies, un lietotnes izskats un saskarne var būt nepilnīga.",
"Use %(brand)s on mobile": "Viedtālrunī jāizmanto %(brand)s", "features": "%(brand)s izmanto pārlūku iespējas, kuras nav pieejamas šajā pārlūkā.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentralizēta, šifrēta saziņa un sadarbība, ko nodrošina $matrixLogo", "summary": "Šajā pārlūkā nevar palaist %(brand)s",
"%(brand)s Desktop: %(platformName)s": "%(brand)s darbvirsma: %(platformName)s", "title": "Neatbalstīts pārlūks"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s %(osName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Nederīga konfigurācija: default_hs_url nevar būt norādīts vienlaicīgi ar default_server_name vai default_server_config" "powered_by_matrix": "Darbina Matrix",
"powered_by_matrix_with_logo": "Decentralizēta, šifrēta saziņa un sadarbība, ko nodrošina $matrixLogo",
"unknown_device": "Nezināma ierīce",
"use_brand_on_mobile": "Viedtālrunī jāizmanto %(brand)s",
"web_default_device_name": "%(appName)s: %(browserName)s %(osName)s",
"welcome_to_element": "Laipni lūdzam Element!"
} }

View File

@ -1,16 +1,19 @@
{ {
"Dismiss": "ഒഴിവാക്കുക", "action": {
"Unknown device": "അപരിചിത ഡിവൈസ്", "dismiss": "ഒഴിവാക്കുക"
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "ദയവായി <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, അല്ലെങ്കിൽ <safariLink>Safari</safariLink> ഇൻസ്റ്റാൾ ചെയ്യുക.", },
"Your Element is misconfigured": "നിങ്ങളുടെ Element തെറ്റായിട്ടാണ് കോൺഫിഗർ ചെയ്തിരിക്കുന്നത്", "download_completed": "ഡൗൺലോഡ് പൂർത്തിയായി",
"Invalid configuration: no default server specified.": "അസാധുവായ കോൺഫിഗറേഷൻ: സ്ഥിര സെർവർ ഒന്നും വ്യക്തമാക്കിയില്ല.", "error": {
"Download Completed": "ഡൗൺലോഡ് പൂർത്തിയായി", "invalid_configuration_no_server": "അസാധുവായ കോൺഫിഗറേഷൻ: സ്ഥിര സെർവർ ഒന്നും വ്യക്തമാക്കിയില്ല.",
"Unsupported browser": "പിന്തുണയ്‌ക്കാത്ത ബ്രൗസർ", "misconfigured": "നിങ്ങളുടെ Element തെറ്റായിട്ടാണ് കോൺഫിഗർ ചെയ്തിരിക്കുന്നത്"
"I understand the risks and wish to continue": "ഞാൻ അപകടസാധ്യതകൾ മനസിലാക്കുകയും തുടരാൻ ആഗ്രഹിക്കുകയും ചെയ്യുന്നു", },
"Go to element.io": "element.io-ലേക്ക് പോവുക", "failed_to_start": "ആരംഭിക്കാൻ പരാജയപെട്ടു",
"Failed to start": "ആരംഭിക്കാൻ പരാജയപെട്ടു", "go_to_element_io": "element.io-ലേക്ക് പോവുക",
"Welcome to Element": "Element-ലേക്ക് സ്വാഗതം", "incompatible_browser": {
"Sign In": "പ്രവേശിക്കുക", "browser_links": "ദയവായി <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, അല്ലെങ്കിൽ <safariLink>Safari</safariLink> ഇൻസ്റ്റാൾ ചെയ്യുക.",
"Create Account": "അക്കൗണ്ട് സൃഷ്ടിക്കുക", "continue_warning": "ഞാൻ അപകടസാധ്യതകൾ മനസിലാക്കുകയും തുടരാൻ ആഗ്രഹിക്കുകയും ചെയ്യുന്നു",
"Explore rooms": "മുറികൾ കണ്ടെത്തുക" "title": "പിന്തുണയ്‌ക്കാത്ത ബ്രൗസർ"
},
"unknown_device": "അപരിചിത ഡിവൈസ്",
"welcome_to_element": "Element-ലേക്ക് സ്വാഗതം"
} }

View File

@ -1,13 +1,16 @@
{ {
"The message from the parser is: %(message)s": "Парсераас ирсэн мессеж нь: %(message)s", "action": {
"Invalid JSON": "Буруу ЖСОН", "dismiss": "Орхих"
"Unexpected error preparing the app. See console for details.": "Апп бэлдэх үед гарах ёсгүй алдаа. Дэлгэрэнгүйг консолоос харна уу.", },
"Invalid configuration: no default server specified.": "Буруу тохиргоо: Өгөгдсөл серверийг зааж өгөөгүй байна.", "auth": {
"Unknown device": "Үл мэдэгдэх төхөөрөмж", "sso_complete_in_browser_dialog_title": "Бүрэн нэвтрэхийн тулд вэб хөтөч рүү шилжинэ үү"
"Dismiss": "Орхих", },
"Welcome to Element": "Element -д тавтай морил", "error": {
"Sign In": "Нэвтрэх", "app_launch_unexpected_error": "Апп бэлдэх үед гарах ёсгүй алдаа. Дэлгэрэнгүйг консолоос харна уу.",
"Create Account": "Хэрэглэгч үүсгэх", "invalid_configuration_no_server": "Буруу тохиргоо: Өгөгдсөл серверийг зааж өгөөгүй байна.",
"Explore rooms": "Өрөөнүүд үзэх", "invalid_json_detail": "Парсераас ирсэн мессеж нь: %(message)s",
"Go to your browser to complete Sign In": "Бүрэн нэвтрэхийн тулд вэб хөтөч рүү шилжинэ үү" "invalid_json_generic": "Буруу ЖСОН"
},
"unknown_device": "Үл мэдэгдэх төхөөрөмж",
"welcome_to_element": "Element -д тавтай морил"
} }

View File

@ -1,3 +1,5 @@
{ {
"Invalid configuration: no default server specified.": "ဖွဲ့စည်းပုံ မမှန်ပါ။ default ဆာဗာကို သတ်မှတ်ထားခြင်း မရှိပါ။" "error": {
"invalid_configuration_no_server": "ဖွဲ့စည်းပုံ မမှန်ပါ။ default ဆာဗာကို သတ်မှတ်ထားခြင်း မရှိပါ။"
}
} }

View File

@ -1,31 +1,35 @@
{ {
"Unknown device": "Ukjent enhet", "action": {
"Dismiss": "Avvis", "dismiss": "Avvis",
"Welcome to Element": "Velkommen til Element", "open": "Åpne"
"Sign In": "Logg inn", },
"Create Account": "Opprett konto", "auth": {
"Explore rooms": "Se alle rom", "sso_complete_in_browser_dialog_title": "Gå til nettleseren din for å fullføre innloggingen"
"The message from the parser is: %(message)s": "Meldingen fra parseren er: %(message)s", },
"Invalid JSON": "Ugyldig JSON", "download_completed": "Nedlasting Fullført",
"Invalid configuration: no default server specified.": "Ugyldig konfigurasjon: ingen standardserver spesifisert.", "error": {
"Unexpected error preparing the app. See console for details.": "Uventet feil ved klargjøring av appen. Se konsollen for detaljer.", "app_launch_unexpected_error": "Uventet feil ved klargjøring av appen. Se konsollen for detaljer.",
"Go to your browser to complete Sign In": "Gå til nettleseren din for å fullføre innloggingen", "cannot_load_config": "Kan ikke laste inn konfigurasjonsfil: oppdater siden for å prøve igjen.",
"Failed to start": "Kunne ikke starte", "invalid_configuration_no_server": "Ugyldig konfigurasjon: ingen standardserver spesifisert.",
"Go to element.io": "Gå til element.io", "invalid_json": "Ditt Element konfigurasjonen inneholder ugyldig JSON. Løs problemet og last siden på nytt.",
"I understand the risks and wish to continue": "Jeg forstår risikoen og ønsker å fortsette", "invalid_json_detail": "Meldingen fra parseren er: %(message)s",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Du kan fortsette å bruke din nåværende nettleser, men noen eller alle funksjonene fungerer kanskje ikke, og utseendet og følelsen av applikasjonen kan være feil.", "invalid_json_generic": "Ugyldig JSON",
"Your browser can't run %(brand)s": "Nettleseren din kan ikke kjøre %(brand)s", "misconfigured": "Ditt Element er feilkonfigurert"
"Unsupported browser": "Ustøttet nettleser", },
"Powered by Matrix": "Drevet av Matrix", "failed_to_start": "Kunne ikke starte",
"Download Completed": "Nedlasting Fullført", "go_to_element_io": "Gå til element.io",
"Unable to load config file: please refresh the page to try again.": "Kan ikke laste inn konfigurasjonsfil: oppdater siden for å prøve igjen.", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Ditt Element konfigurasjonen inneholder ugyldig JSON. Løs problemet og last siden på nytt.", "browser_links": "Vennligst installer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eller <safariLink>Safari</safariLink> for den beste opplevelsen.",
"Your Element is misconfigured": "Ditt Element er feilkonfigurert", "continue_warning": "Jeg forstår risikoen og ønsker å fortsette",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Vennligst installer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eller <safariLink>Safari</safariLink> for den beste opplevelsen.", "feature_warning": "Du kan fortsette å bruke din nåværende nettleser, men noen eller alle funksjonene fungerer kanskje ikke, og utseendet og følelsen av applikasjonen kan være feil.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s bruker avanserte nettleserfunksjoner som ikke støttes av din nåværende nettleser.", "features": "%(brand)s bruker avanserte nettleserfunksjoner som ikke støttes av din nåværende nettleser.",
"Open": "Åpne", "summary": "Nettleseren din kan ikke kjøre %(brand)s",
"Use %(brand)s on mobile": "Bruk %(brand)s på mobil", "title": "Ustøttet nettleser"
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Desentralisert, kryptert chat & samhandling basert på $matrixLogo", },
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s på %(osName)s", "powered_by_matrix": "Drevet av Matrix",
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s" "powered_by_matrix_with_logo": "Desentralisert, kryptert chat & samhandling basert på $matrixLogo",
"unknown_device": "Ukjent enhet",
"use_brand_on_mobile": "Bruk %(brand)s på mobil",
"web_default_device_name": "%(appName)s: %(browserName)s på %(osName)s",
"welcome_to_element": "Velkommen til Element"
} }

View File

@ -1,29 +1,34 @@
{ {
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "सर्वोत्तम अनुभव के लिए कृपया <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, या <safariLink>Safari</safariLink> इंस्टॉल करें।", "action": {
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s उन्नत ब्राउज़र सुविधाओं का उपयोग करते हैं जो आपके वर्तमान ब्राउज़र द्वारा समर्थित नहीं हैं।", "dismiss": "खारिज",
"Sign In": "साइन करना", "open": "खुला"
"Explore rooms": "रूम का अन्वेषण करें", },
"Create Account": "खाता बनाएं", "auth": {
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "विकेन्द्रीकृत, एन्क्रिप्टेड च्याट र $matrixLogo द्वारा संचालित सहयोग", "sso_complete_in_browser_dialog_title": "साइन इन पूरा करने के लिए अपने ब्राउज़र पर जाएं"
"Welcome to Element": "Element में आपका स्वागत है", },
"Failed to start": "प्रारंभ करने में विफल", "download_completed": "डाउनलोड सम्पन्न हुआ",
"Go to element.io": "element.io पर जाएं", "error": {
"I understand the risks and wish to continue": "मैं जोखिमों को समझता हूं और जारी रखना चाहता हूं", "app_launch_unexpected_error": "ऐप्लिकेशन तैयार करने में अनपेक्षित गड़बड़ी हुई. विवरण के लिए कंसोल देखें।",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "आप अपने वर्तमान ब्राउज़र का उपयोग जारी रख सकते हैं, लेकिन हो सकता है कि कुछ या सभी सुविधाएं काम न करें और एप्लिकेशन का रंगरूप गलत हो सकता है।", "cannot_load_config": "कॉन्फ़िग फ़ाइल लोड करने में असमर्थ: कृपया पुन: प्रयास करने के लिए पृष्ठ को रीफ़्रेश करें।",
"Your browser can't run %(brand)s": "आपका ब्राउज़र %(brand)s को नहीं चला सकता", "invalid_configuration_no_server": "अमान्य कॉन्फ़िगरेशन: कोई डिफ़ॉल्ट सर्वर निर्दिष्ट नहीं है।",
"Unsupported browser": "असमर्थित ब्राउज़र", "invalid_json": "आपके एलीमेंट कॉन्फ़िगरेशन में अमान्य JSON है. कृपया समस्या को ठीक करें और पृष्ठ को पुनः लोड करें।",
"Use %(brand)s on mobile": "मोबाइल पर %(brand)s का प्रयोग करें", "invalid_json_detail": "पार्सर का संदेश है: %(message)s",
"Powered by Matrix": "मैट्रिक्स द्वारा संचालित", "invalid_json_generic": "अमान्य JSON",
"Unknown device": "अज्ञात यन्त्र", "misconfigured": "आपका तत्व गलत कॉन्फ़िगर किया गया है"
"Go to your browser to complete Sign In": "साइन इन पूरा करने के लिए अपने ब्राउज़र पर जाएं", },
"Dismiss": "खारिज", "failed_to_start": "प्रारंभ करने में विफल",
"Open": "खुला", "go_to_element_io": "element.io पर जाएं",
"Download Completed": "डाउनलोड सम्पन्न हुआ", "incompatible_browser": {
"Unexpected error preparing the app. See console for details.": "ऐप्लिकेशन तैयार करने में अनपेक्षित गड़बड़ी हुई. विवरण के लिए कंसोल देखें।", "browser_links": "सर्वोत्तम अनुभव के लिए कृपया <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, या <safariLink>Safari</safariLink> इंस्टॉल करें।",
"Unable to load config file: please refresh the page to try again.": "कॉन्फ़िग फ़ाइल लोड करने में असमर्थ: कृपया पुन: प्रयास करने के लिए पृष्ठ को रीफ़्रेश करें।", "continue_warning": "मैं जोखिमों को समझता हूं और जारी रखना चाहता हूं",
"Invalid JSON": "अमान्य JSON", "feature_warning": "आप अपने वर्तमान ब्राउज़र का उपयोग जारी रख सकते हैं, लेकिन हो सकता है कि कुछ या सभी सुविधाएं काम न करें और एप्लिकेशन का रंगरूप गलत हो सकता है।",
"The message from the parser is: %(message)s": "पार्सर का संदेश है: %(message)s", "features": "%(brand)s उन्नत ब्राउज़र सुविधाओं का उपयोग करते हैं जो आपके वर्तमान ब्राउज़र द्वारा समर्थित नहीं हैं।",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "आपके एलीमेंट कॉन्फ़िगरेशन में अमान्य JSON है. कृपया समस्या को ठीक करें और पृष्ठ को पुनः लोड करें।", "summary": "आपका ब्राउज़र %(brand)s को नहीं चला सकता",
"Your Element is misconfigured": "आपका तत्व गलत कॉन्फ़िगर किया गया है", "title": "असमर्थित ब्राउज़र"
"Invalid configuration: no default server specified.": "अमान्य कॉन्फ़िगरेशन: कोई डिफ़ॉल्ट सर्वर निर्दिष्ट नहीं है।" },
"powered_by_matrix": "मैट्रिक्स द्वारा संचालित",
"powered_by_matrix_with_logo": "विकेन्द्रीकृत, एन्क्रिप्टेड च्याट र $matrixLogo द्वारा संचालित सहयोग",
"unknown_device": "अज्ञात यन्त्र",
"use_brand_on_mobile": "मोबाइल पर %(brand)s का प्रयोग करें",
"welcome_to_element": "Element में आपका स्वागत है"
} }

View File

@ -1,31 +1,35 @@
{ {
"Dismiss": "Sluiten", "action": {
"Unknown device": "Onbekend apparaat", "dismiss": "Sluiten",
"Welcome to Element": "Welkom bij Element", "open": "Openen"
"Sign In": "Inloggen", },
"Create Account": "Registreren", "auth": {
"Explore rooms": "Kamers ontdekken", "sso_complete_in_browser_dialog_title": "Ga naar je browser om de aanmelding te voltooien"
"Unexpected error preparing the app. See console for details.": "Er is een onverwachte fout opgetreden bij het voorbereiden van de app. Zie de console voor details.", },
"Invalid configuration: no default server specified.": "Configuratie ongeldig: geen standaardserver opgegeven.", "download_completed": "Download voltooid",
"The message from the parser is: %(message)s": "De ontleder meldt: %(message)s", "error": {
"Invalid JSON": "Ongeldige JSON", "app_launch_unexpected_error": "Er is een onverwachte fout opgetreden bij het voorbereiden van de app. Zie de console voor details.",
"Go to your browser to complete Sign In": "Ga naar je browser om de aanmelding te voltooien", "cannot_load_config": "Kan het configuratiebestand niet laden. Herlaad de pagina.",
"Unable to load config file: please refresh the page to try again.": "Kan het configuratiebestand niet laden. Herlaad de pagina.", "invalid_configuration_no_server": "Configuratie ongeldig: geen standaardserver opgegeven.",
"Unsupported browser": "Niet-ondersteunde browser", "invalid_json": "Jouw Element configuratie bevat ongeldige JSON. Corrigeer het probleem en herlaad de pagina.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Installeer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, of <safariLink>Safari</safariLink> voor de beste gebruikservaring.", "invalid_json_detail": "De ontleder meldt: %(message)s",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Je kan je huidige browser blijven gebruiken, maar sommige of alle functies zouden niet kunnen werken en de weergave van het programma kan verkeerd zijn.", "invalid_json_generic": "Ongeldige JSON",
"I understand the risks and wish to continue": "Ik begrijp de risico's en wil verder gaan", "misconfigured": "Jouw Element is verkeerd geconfigureerd"
"Go to element.io": "Ga naar element.io", },
"Failed to start": "Opstarten mislukt", "failed_to_start": "Opstarten mislukt",
"Open": "Openen", "go_to_element_io": "Ga naar element.io",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Jouw Element configuratie bevat ongeldige JSON. Corrigeer het probleem en herlaad de pagina.", "incompatible_browser": {
"Download Completed": "Download voltooid", "browser_links": "Installeer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, of <safariLink>Safari</safariLink> voor de beste gebruikservaring.",
"Your Element is misconfigured": "Jouw Element is verkeerd geconfigureerd", "continue_warning": "Ik begrijp de risico's en wil verder gaan",
"Your browser can't run %(brand)s": "Jouw browser kan %(brand)s niet starten", "feature_warning": "Je kan je huidige browser blijven gebruiken, maar sommige of alle functies zouden niet kunnen werken en de weergave van het programma kan verkeerd zijn.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s gebruikt geavanceerde functies die niet ondersteund worden in je huidige browser.", "features": "%(brand)s gebruikt geavanceerde functies die niet ondersteund worden in je huidige browser.",
"Powered by Matrix": "Mogelijk gemaakt door Matrix", "summary": "Jouw browser kan %(brand)s niet starten",
"Use %(brand)s on mobile": "Gebruik %(brand)s op je mobiel", "title": "Niet-ondersteunde browser"
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Gedecentraliseerde, versleutelde chat &amp; samenwerking mogelijk gemaakt door $matrixLogo", },
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s op %(osName)s", "powered_by_matrix": "Mogelijk gemaakt door Matrix",
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s" "powered_by_matrix_with_logo": "Gedecentraliseerde, versleutelde chat &amp; samenwerking mogelijk gemaakt door $matrixLogo",
"unknown_device": "Onbekend apparaat",
"use_brand_on_mobile": "Gebruik %(brand)s op je mobiel",
"web_default_device_name": "%(appName)s: %(browserName)s op %(osName)s",
"welcome_to_element": "Welkom bij Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Unknown device": "Ukjend eining", "action": {
"Dismiss": "Avvis", "dismiss": "Avvis",
"Welcome to Element": "Velkomen til Element", "open": "Opna"
"Sign In": "Logg inn", },
"Create Account": "Opprett konto", "auth": {
"Explore rooms": "Utforsk romma", "sso_complete_in_browser_dialog_title": "Opna nettlesaren din for å fullføra innlogginga"
"The message from the parser is: %(message)s": "Meldinga frå kodetolkaren er: %(message)s", },
"Invalid JSON": "Ugyldig JSON", "desktop_default_device_name": "%(brand)s Skrivebord: %(platformName)s",
"Unexpected error preparing the app. See console for details.": "Uventa feil under lasting av programmet. Sjå konsollen for detaljar.", "download_completed": "Nedlasting Fullført",
"Invalid configuration: no default server specified.": "Ugyldig oppsett: Ingen standardtener er spesifisert.", "error": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Oppsettet for din Element inneheld ugyldig JSON. Sjekk konfigurasjonsfila, deretter last om sida.", "app_launch_unexpected_error": "Uventa feil under lasting av programmet. Sjå konsollen for detaljar.",
"Unable to load config file: please refresh the page to try again.": "Fekk ikkje til å lasta konfigurasjonsfila: last inn sida for å prøva om att.", "cannot_load_config": "Fekk ikkje til å lasta konfigurasjonsfila: last inn sida for å prøva om att.",
"Go to your browser to complete Sign In": "Opna nettlesaren din for å fullføra innlogginga", "invalid_configuration_no_server": "Ugyldig oppsett: Ingen standardtener er spesifisert.",
"Unsupported browser": "Nettlesaren er ikkje støtta", "invalid_json": "Oppsettet for din Element inneheld ugyldig JSON. Sjekk konfigurasjonsfila, deretter last om sida.",
"Your browser can't run %(brand)s": "Din nettlesar kan ikkje køyra %(brand)s", "invalid_json_detail": "Meldinga frå kodetolkaren er: %(message)s",
"Go to element.io": "Gå til element.io", "invalid_json_generic": "Ugyldig JSON",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Du kan fortsetja å bruka gjeldande nettlesar, men nokre eller alle funksjonane fungerer kanskje ikkje, og utsjånaden og kjensla av applikasjonen kan vera feil.", "misconfigured": "Din Element-klient er sett opp feil"
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Installer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eller <safariLink>Safari</safariLink> for den beste opplevinga.", },
"I understand the risks and wish to continue": "Eg forstår risikoen og ynskjer å fortsetja", "failed_to_start": "Klarte ikkje å starta",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s brukar avanserte nettlesarfunksjonar som ikkje er støtta av den gjeldande nettlesaren din.", "go_to_element_io": "Gå til element.io",
"Use %(brand)s on mobile": "Bruk %(brand)s på mobil", "incompatible_browser": {
"Powered by Matrix": "Driven av Matrix", "browser_links": "Installer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eller <safariLink>Safari</safariLink> for den beste opplevinga.",
"Your Element is misconfigured": "Din Element-klient er sett opp feil", "continue_warning": "Eg forstår risikoen og ynskjer å fortsetja",
"Failed to start": "Klarte ikkje å starta", "feature_warning": "Du kan fortsetja å bruka gjeldande nettlesar, men nokre eller alle funksjonane fungerer kanskje ikkje, og utsjånaden og kjensla av applikasjonen kan vera feil.",
"Open": "Opna", "features": "%(brand)s brukar avanserte nettlesarfunksjonar som ikkje er støtta av den gjeldande nettlesaren din.",
"Download Completed": "Nedlasting Fullført", "summary": "Din nettlesar kan ikkje køyra %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Desentralisertd kryptert chatt &amp; samarbeid som vert drive av $matrixLogo", "title": "Nettlesaren er ikkje støtta"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s på %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Skrivebord: %(platformName)s" "powered_by_matrix": "Driven av Matrix",
"powered_by_matrix_with_logo": "Desentralisertd kryptert chatt &amp; samarbeid som vert drive av $matrixLogo",
"unknown_device": "Ukjend eining",
"use_brand_on_mobile": "Bruk %(brand)s på mobil",
"web_default_device_name": "%(appName)s: %(browserName)s på %(osName)s",
"welcome_to_element": "Velkomen til Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"The message from the parser is: %(message)s": "Lo messatge de lanalisaire es: %(message)s", "action": {
"Invalid JSON": "JSON invalida", "dismiss": "Refusar",
"Unexpected error preparing the app. See console for details.": "Error inesperada en preparant laplicacion. Vejatz la consòla pels detalhs.", "open": "Dobrir"
"Go to your browser to complete Sign In": "Anatz au navegador per achabar la connexion", },
"Unknown device": "Periferic desconegut", "auth": {
"Dismiss": "Refusar", "sso_complete_in_browser_dialog_title": "Anatz au navegador per achabar la connexion"
"Welcome to Element": "La benvenguda a Element", },
"Sign In": "Se connectar", "desktop_default_device_name": "%(brand)s Burèu: %(platformName)s",
"Create Account": "Crear un compte", "download_completed": "Descharjament achabat",
"Explore rooms": "Percórrer las salas", "error": {
"Invalid configuration: no default server specified.": "Configuracion invalida : pas de servidor per defauta especificat.", "app_launch_unexpected_error": "Error inesperada en preparant laplicacion. Vejatz la consòla pels detalhs.",
"Failed to start": "Se pòt pas lançar", "cannot_load_config": "Se pòt pas charjar lo fichièr de configuracion : si vos plait actualizatz la pagina per tornar ensajar.",
"Go to element.io": "Anar vès element.io", "invalid_configuration_no_server": "Configuracion invalida : pas de servidor per defauta especificat.",
"I understand the risks and wish to continue": "Comprène los risques e vòle contunhar", "invalid_json": "La configuracion d'Element conten dau JSON invalid. Si vos plait corregitz lo problème e actualizatz la pagina.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Podètz contunhar d'utilizar lo vòstre navigator actuau, mas quauquas o totas las foncionalitats o/e l'apparéncia poirián mau foncionar .", "invalid_json_detail": "Lo messatge de lanalisaire es: %(message)s",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Si vos plait installatz <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> per una melhora experiéncia.", "invalid_json_generic": "JSON invalida",
"Your browser can't run %(brand)s": "Lo vòstre navigator non pòt pas executar %(brand)s", "misconfigured": "Lo vòstre Element es mau configurat"
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s utiliza de foncions avançadas que lo vòstre navigator non suporta pas.", },
"Unsupported browser": "Navigator incompatible", "failed_to_start": "Se pòt pas lançar",
"Powered by Matrix": "Fonciona embei Matrix", "go_to_element_io": "Anar vès element.io",
"Open": "Dobrir", "incompatible_browser": {
"Download Completed": "Descharjament achabat", "browser_links": "Si vos plait installatz <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> per una melhora experiéncia.",
"Unable to load config file: please refresh the page to try again.": "Se pòt pas charjar lo fichièr de configuracion : si vos plait actualizatz la pagina per tornar ensajar.", "continue_warning": "Comprène los risques e vòle contunhar",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "La configuracion d'Element conten dau JSON invalid. Si vos plait corregitz lo problème e actualizatz la pagina.", "feature_warning": "Podètz contunhar d'utilizar lo vòstre navigator actuau, mas quauquas o totas las foncionalitats o/e l'apparéncia poirián mau foncionar .",
"Your Element is misconfigured": "Lo vòstre Element es mau configurat", "features": "%(brand)s utiliza de foncions avançadas que lo vòstre navigator non suporta pas.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Discussions decentralizadas, criptadas, collaboracion &amp; botada per $matrixLogo", "summary": "Lo vòstre navigator non pòt pas executar %(brand)s",
"Use %(brand)s on mobile": "Utilizatz %(brand)s per telefòn", "title": "Navigator incompatible"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s per %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Burèu: %(platformName)s" "powered_by_matrix": "Fonciona embei Matrix",
"powered_by_matrix_with_logo": "Discussions decentralizadas, criptadas, collaboracion &amp; botada per $matrixLogo",
"unknown_device": "Periferic desconegut",
"use_brand_on_mobile": "Utilizatz %(brand)s per telefòn",
"web_default_device_name": "%(appName)s: %(browserName)s per %(osName)s",
"welcome_to_element": "La benvenguda a Element"
} }

View File

@ -1,32 +1,37 @@
{ {
"Dismiss": "Pomiń", "action": {
"Unknown device": "Nieznane urządzenie", "dismiss": "Pomiń",
"Welcome to Element": "Witamy w Element", "open": "Otwórz"
"Create Account": "Utwórz konto", },
"Sign In": "Zaloguj się", "auth": {
"Explore rooms": "Przeglądaj pokoje", "sso_complete_in_browser_dialog_title": "Aby dokończyć proces rejestracji, przejdź do swojej przeglądarki"
"The message from the parser is: %(message)s": "Wiadomość od parsera to: %(message)s", },
"Invalid JSON": "Błędny JSON", "desktop_default_device_name": "Komputer %(brand)s: %(platformName)s",
"Unexpected error preparing the app. See console for details.": "Niespodziewany błąd podczas przygotowywania aplikacji. Otwórz konsolę po szczegóły.", "download_completed": "Pobieranie zakończone",
"Invalid configuration: no default server specified.": "Błędna konfiguracja: nie wybrano domyślnego serwera.", "error": {
"Go to your browser to complete Sign In": "Aby dokończyć proces rejestracji, przejdź do swojej przeglądarki", "app_launch_unexpected_error": "Niespodziewany błąd podczas przygotowywania aplikacji. Otwórz konsolę po szczegóły.",
"Unable to load config file: please refresh the page to try again.": "Nie udało się załadować pliku konfiguracyjnego: odśwież stronę, aby spróbować ponownie.", "cannot_load_config": "Nie udało się załadować pliku konfiguracyjnego: odśwież stronę, aby spróbować ponownie.",
"Unsupported browser": "Niewspierana przeglądarka", "invalid_configuration_mixed_server": "Nieprawidłowa konfiguracja: nie można określić default_hs_url wraz z default_server_name lub default_server_config",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Zainstaluj <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, lub <safariLink>Safari</safariLink> w celu zapewnienia najlepszego działania.", "invalid_configuration_no_server": "Błędna konfiguracja: nie wybrano domyślnego serwera.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Możesz kontynuować używając obecnej przeglądarki, lecz niektóre lub wszystkie funkcje mogą nie działać oraz wygląd aplikacji może być niepoprawny.", "invalid_json": "Twoja konfiguracja Elementa zawiera nieprawidłowy JSON. Rozwiąż problem i odśwież stronę.",
"I understand the risks and wish to continue": "Rozumiem ryzyko i chcę kontynuować", "invalid_json_detail": "Wiadomość od parsera to: %(message)s",
"Go to element.io": "Przejdź do element.io", "invalid_json_generic": "Błędny JSON",
"Failed to start": "Nie udało się wystartować", "misconfigured": "Twój Element jest nieprawidłowo skonfigurowany"
"Download Completed": "Pobieranie zakończone", },
"Open": "Otwórz", "failed_to_start": "Nie udało się wystartować",
"Your browser can't run %(brand)s": "Twoja przeglądarka nie obsługuje %(brand)s", "go_to_element_io": "Przejdź do element.io",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s używa funkcji zaawansowanych, które nie są dostępne w Twojej przeglądarce.", "incompatible_browser": {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Twoja konfiguracja Elementa zawiera nieprawidłowy JSON. Rozwiąż problem i odśwież stronę.", "browser_links": "Zainstaluj <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, lub <safariLink>Safari</safariLink> w celu zapewnienia najlepszego działania.",
"Your Element is misconfigured": "Twój Element jest nieprawidłowo skonfigurowany", "continue_warning": "Rozumiem ryzyko i chcę kontynuować",
"Powered by Matrix": "Zasilane przez Matrix", "feature_warning": "Możesz kontynuować używając obecnej przeglądarki, lecz niektóre lub wszystkie funkcje mogą nie działać oraz wygląd aplikacji może być niepoprawny.",
"Use %(brand)s on mobile": "Użyj %(brand)s w telefonie", "features": "%(brand)s używa funkcji zaawansowanych, które nie są dostępne w Twojej przeglądarce.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Zdecentralizowany, szyfrowany czat i współpraca oparte na $matrixLogo", "summary": "Twoja przeglądarka nie obsługuje %(brand)s",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s na %(osName)s", "title": "Niewspierana przeglądarka"
"%(brand)s Desktop: %(platformName)s": "Komputer %(brand)s: %(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Nieprawidłowa konfiguracja: nie można określić default_hs_url wraz z default_server_name lub default_server_config" "powered_by_matrix": "Zasilane przez Matrix",
"powered_by_matrix_with_logo": "Zdecentralizowany, szyfrowany czat i współpraca oparte na $matrixLogo",
"unknown_device": "Nieznane urządzenie",
"use_brand_on_mobile": "Użyj %(brand)s w telefonie",
"web_default_device_name": "%(appName)s: %(browserName)s na %(osName)s",
"welcome_to_element": "Witamy w Element"
} }

View File

@ -1,31 +1,35 @@
{ {
"Dismiss": "Descartar", "action": {
"Unknown device": "Dispositivo desconhecido", "dismiss": "Descartar",
"Welcome to Element": "Boas-vindas ao Element", "open": "Abrir"
"The message from the parser is: %(message)s": "A mensagem do parser é: %(message)s", },
"Invalid JSON": "JSON inválido", "auth": {
"Unexpected error preparing the app. See console for details.": "Erro inesperado na preparação da aplicação. Veja a consola para mais detalhes.", "sso_complete_in_browser_dialog_title": "Abra o seu navegador para completar o inicio de sessão"
"Invalid configuration: no default server specified.": "Configuração inválida: servidor padrão não especificado.", },
"Sign In": "Iniciar sessão", "download_completed": "Transferência concluída",
"Create Account": "Criar conta", "error": {
"Explore rooms": "Explorar rooms", "app_launch_unexpected_error": "Erro inesperado na preparação da aplicação. Veja a consola para mais detalhes.",
"Go to your browser to complete Sign In": "Abra o seu navegador para completar o inicio de sessão", "cannot_load_config": "Não foi possível carregar o ficheiro de configuração: atualize a página para tentar novamente.",
"Open": "Abrir", "invalid_configuration_no_server": "Configuração inválida: servidor padrão não especificado.",
"Download Completed": "Transferência concluída", "invalid_json": "A sua configuração do Element contém JSON inválido. Por favor, corrija o problema e recarregue a página.",
"Unable to load config file: please refresh the page to try again.": "Não foi possível carregar o ficheiro de configuração: atualize a página para tentar novamente.", "invalid_json_detail": "A mensagem do parser é: %(message)s",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "A sua configuração do Element contém JSON inválido. Por favor, corrija o problema e recarregue a página.", "invalid_json_generic": "JSON inválido",
"Your Element is misconfigured": "O Element está configurado incorretamente", "misconfigured": "O Element está configurado incorretamente"
"Powered by Matrix": "Desenvolvido por Matrix", },
"Go to element.io": "Visite element.io", "failed_to_start": "Erro ao iniciar",
"I understand the risks and wish to continue": "Compreendo os riscos e pretendo continuar", "go_to_element_io": "Visite element.io",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Podes continuar a utilizar teu browser atual, mas algumas funcionalidades podem não funcionar ou aparecerem de forma incorrecta.", "incompatible_browser": {
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Por favor, instala <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ou <safariLink>Safari</safariLink> para uma melhor experiência.", "browser_links": "Por favor, instala <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ou <safariLink>Safari</safariLink> para uma melhor experiência.",
"Unsupported browser": "Browser não suportado", "continue_warning": "Compreendo os riscos e pretendo continuar",
"Failed to start": "Erro ao iniciar", "feature_warning": "Podes continuar a utilizar teu browser atual, mas algumas funcionalidades podem não funcionar ou aparecerem de forma incorrecta.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s utiliza funcionalidades avançadas que o seu Navegador actual não suporta.", "features": "%(brand)s utiliza funcionalidades avançadas que o seu Navegador actual não suporta.",
"Your browser can't run %(brand)s": "O teu browser não consegue executar %(brand)s", "summary": "O teu browser não consegue executar %(brand)s",
"Use %(brand)s on mobile": "Usar %(brand)s no telemóvel", "title": "Browser não suportado"
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Chat descentralizado e encriptado &amp; colaboração alimentada por $matrixLogo", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s", "powered_by_matrix": "Desenvolvido por Matrix",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s em %(osName)s" "powered_by_matrix_with_logo": "Chat descentralizado e encriptado &amp; colaboração alimentada por $matrixLogo",
"unknown_device": "Dispositivo desconhecido",
"use_brand_on_mobile": "Usar %(brand)s no telemóvel",
"web_default_device_name": "%(appName)s: %(browserName)s em %(osName)s",
"welcome_to_element": "Boas-vindas ao Element"
} }

View File

@ -1,31 +1,34 @@
{ {
"Dismiss": "Dispensar", "action": {
"Unknown device": "Dispositivo desconhecido", "dismiss": "Dispensar",
"Welcome to Element": "Boas-vindas a Element", "open": "Abrir"
"Sign In": "Fazer signin", },
"Create Account": "Criar Conta", "auth": {
"Explore rooms": "Explorar salas", "sso_complete_in_browser_dialog_title": "Vá em seu navegador para completar o Registro"
"The message from the parser is: %(message)s": "A mensagem do parser é: %(message)s", },
"Invalid JSON": "JSON inválido", "download_completed": "Download Concluído",
"Unexpected error preparing the app. See console for details.": "Erro inesperado preparando o app. Veja console para detalhes.", "error": {
"Invalid configuration: no default server specified.": "Configuração inválida: nenhum servidor default especificado.", "app_launch_unexpected_error": "Erro inesperado preparando o app. Veja console para detalhes.",
"Unable to load config file: please refresh the page to try again.": "Incapaz de carregar arquivo de configuração: por favor atualize a página para tentar de novo.", "cannot_load_config": "Incapaz de carregar arquivo de configuração: por favor atualize a página para tentar de novo.",
"Download Completed": "Download Concluído", "invalid_configuration_no_server": "Configuração inválida: nenhum servidor default especificado.",
"Unsupported browser": "Browser insuportado", "invalid_json": "Sua configuração do Element contém JSON inválido. Por favor corrija o problema e recarregue a página.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Por favor instale <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ou <safariLink>Safari</safariLink> para a melhor experiência.", "invalid_json_detail": "A mensagem do parser é: %(message)s",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Você pode continuar usando seu browser atual, mas alguma ou toda funcionalidade pode não funcionar e a aparência e sensação do aplicativo pode estar incorretas.", "invalid_json_generic": "JSON inválido",
"I understand the risks and wish to continue": "Eu entendo os riscos e desejo continuar", "misconfigured": "Seu Element está mal configurado"
"Go to element.io": "Ir para element.io", },
"Failed to start": "Falha para iniciar", "failed_to_start": "Falha para iniciar",
"Open": "Abrir", "go_to_element_io": "Ir para element.io",
"Go to your browser to complete Sign In": "Vá em seu navegador para completar o Registro", "incompatible_browser": {
"Your Element is misconfigured": "Seu Element está mal configurado", "browser_links": "Por favor instale <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ou <safariLink>Safari</safariLink> para a melhor experiência.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Sua configuração do Element contém JSON inválido. Por favor corrija o problema e recarregue a página.", "continue_warning": "Eu entendo os riscos e desejo continuar",
"Your browser can't run %(brand)s": "Seu browser não consegue rodar %(brand)s", "feature_warning": "Você pode continuar usando seu browser atual, mas alguma ou toda funcionalidade pode não funcionar e a aparência e sensação do aplicativo pode estar incorretas.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s usa funcionalidade de browser avançada que não é suportada por seu browser atual.", "features": "%(brand)s usa funcionalidade de browser avançada que não é suportada por seu browser atual.",
"Powered by Matrix": "Powered by Matrix", "summary": "Seu browser não consegue rodar %(brand)s",
"Use %(brand)s on mobile": "Usar %(brand)s em celular", "title": "Browser insuportado"
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Chat descentralizado e encriptado & colaboração, powered by $matrixLogo", },
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s em %(osName)s", "powered_by_matrix_with_logo": "Chat descentralizado e encriptado & colaboração, powered by $matrixLogo",
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s" "unknown_device": "Dispositivo desconhecido",
"use_brand_on_mobile": "Usar %(brand)s em celular",
"web_default_device_name": "%(appName)s: %(browserName)s em %(osName)s",
"welcome_to_element": "Boas-vindas a Element"
} }

View File

@ -1,31 +1,35 @@
{ {
"Unknown device": "Dispozitiv necunoscut", "action": {
"Dismiss": "Închide", "dismiss": "Închide",
"Welcome to Element": "Bine ai venit pe Element", "open": "Deschide"
"Sign In": "Autentifică-te", },
"Create Account": "Creează-ți Cont", "auth": {
"Explore rooms": "Explorează camerele", "sso_complete_in_browser_dialog_title": "Deschide în browser pentru a finaliza Autentificarea"
"Invalid JSON": "JSON invalid", },
"Unsupported browser": "Acest browser nu este suportat", "download_completed": "Descărcare Completă",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Instalați vă rog <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, sau <safariLink>Safari</safariLink> pentru cea mai bună experiență.", "error": {
"I understand the risks and wish to continue": "Ințeleg riscurile și doresc să continui", "app_launch_unexpected_error": "Eroare neașteptată în aplicație. Vezi consola pentru detalii.",
"Go to element.io": "Accesează element.io", "cannot_load_config": "Nu se poate încărca fișierul de configurație: vă rugăm să reîncărcați pagina și să încercați din nou.",
"Failed to start": "Inițializare eșuată", "invalid_configuration_no_server": "Configurație invalidă: niciun server implicit nu este specificat.",
"Your Element is misconfigured": "Element-ul tău este configurat necorespunzător", "invalid_json": "Configurația ta Element conține JSON invalid. Vă rugăm să corectați problema și să reîncărcați pagina.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Poți continua să folosești browser-ul curent, însă unele sau toate funcționalitățile pot să nu meargă, iar aspectul și experiența în aplicație pot fi incorecte.", "invalid_json_detail": "Mesajul de la parser este: %(message)s",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s folosește funcții avansate de browser ce nu sunt suportate de browser-ul dumneavoastră.", "invalid_json_generic": "JSON invalid",
"Your browser can't run %(brand)s": "Browser-ul tău nu poate rula %(brand)s", "misconfigured": "Element-ul tău este configurat necorespunzător"
"Use %(brand)s on mobile": "Folosește %(brand)s pe mobil", },
"Powered by Matrix": "Cu ajutorul Matrix", "failed_to_start": "Inițializare eșuată",
"Go to your browser to complete Sign In": "Deschide în browser pentru a finaliza Autentificarea", "go_to_element_io": "Accesează element.io",
"Open": "Deschide", "incompatible_browser": {
"Download Completed": "Descărcare Completă", "browser_links": "Instalați vă rog <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, sau <safariLink>Safari</safariLink> pentru cea mai bună experiență.",
"Unexpected error preparing the app. See console for details.": "Eroare neașteptată în aplicație. Vezi consola pentru detalii.", "continue_warning": "Ințeleg riscurile și doresc să continui",
"Unable to load config file: please refresh the page to try again.": "Nu se poate încărca fișierul de configurație: vă rugăm să reîncărcați pagina și să încercați din nou.", "feature_warning": "Poți continua să folosești browser-ul curent, însă unele sau toate funcționalitățile pot să nu meargă, iar aspectul și experiența în aplicație pot fi incorecte.",
"The message from the parser is: %(message)s": "Mesajul de la parser este: %(message)s", "features": "%(brand)s folosește funcții avansate de browser ce nu sunt suportate de browser-ul dumneavoastră.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Configurația ta Element conține JSON invalid. Vă rugăm să corectați problema și să reîncărcați pagina.", "summary": "Browser-ul tău nu poate rula %(brand)s",
"Invalid configuration: no default server specified.": "Configurație invalidă: niciun server implicit nu este specificat.", "title": "Acest browser nu este suportat"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s pe %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s", "powered_by_matrix": "Cu ajutorul Matrix",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Chat &amp; colaborare descentralizate și criptate cu ajutorul $matrixLogo" "powered_by_matrix_with_logo": "Chat &amp; colaborare descentralizate și criptate cu ajutorul $matrixLogo",
"unknown_device": "Dispozitiv necunoscut",
"use_brand_on_mobile": "Folosește %(brand)s pe mobil",
"web_default_device_name": "%(appName)s: %(browserName)s pe %(osName)s",
"welcome_to_element": "Bine ai venit pe Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "Закрыть", "action": {
"Unknown device": "Неизвестное устройство", "dismiss": "Закрыть",
"Welcome to Element": "Добро пожаловать в Element", "open": "Открыть"
"Sign In": "Войти", },
"Create Account": "Создать учётную запись", "auth": {
"Explore rooms": "Обзор комнат", "sso_complete_in_browser_dialog_title": "Перейдите в браузер для завершения входа"
"Unexpected error preparing the app. See console for details.": "Неожиданная ошибка при подготовке приложения. Подробности см. в консоли.", },
"Invalid configuration: no default server specified.": "Неверная конфигурация: сервер по умолчанию не указан.", "desktop_default_device_name": "%(brand)s Рабочий стол: %(platformName)s",
"The message from the parser is: %(message)s": "Сообщение из парсера: %(message)s", "download_completed": "Загрузка завершена",
"Invalid JSON": "Неверный JSON", "error": {
"Go to your browser to complete Sign In": "Перейдите в браузер для завершения входа", "app_launch_unexpected_error": "Неожиданная ошибка при подготовке приложения. Подробности см. в консоли.",
"Unable to load config file: please refresh the page to try again.": "Не удалось загрузить файл конфигурации. Попробуйте обновить страницу.", "cannot_load_config": "Не удалось загрузить файл конфигурации. Попробуйте обновить страницу.",
"Unsupported browser": "Неподдерживаемый браузер", "invalid_configuration_no_server": "Неверная конфигурация: сервер по умолчанию не указан.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Пожалуйста поставьте <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, или <safariLink>Safari</safariLink> для лучшей совместимости.", "invalid_json": "Конфигурация Element содержит неверный JSON. Исправьте проблему и обновите страницу.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Вы можете продолжать пользоваться этим браузером, но некоторые возможности будут недоступны и интерфейс может быть отрисован неправильно.", "invalid_json_detail": "Сообщение из парсера: %(message)s",
"I understand the risks and wish to continue": "Я понимаю риск и хочу продолжить", "invalid_json_generic": "Неверный JSON",
"Go to element.io": "К element.io", "misconfigured": "Ваш Element неверно настроен"
"Failed to start": "Старт не удался", },
"Your Element is misconfigured": "Ваш Element неверно настроен", "failed_to_start": "Старт не удался",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Конфигурация Element содержит неверный JSON. Исправьте проблему и обновите страницу.", "go_to_element_io": "К element.io",
"Download Completed": "Загрузка завершена", "incompatible_browser": {
"Open": "Открыть", "browser_links": "Пожалуйста поставьте <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, или <safariLink>Safari</safariLink> для лучшей совместимости.",
"Your browser can't run %(brand)s": "Ваш браузер не может запустить %(brand)s", "continue_warning": "Я понимаю риск и хочу продолжить",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s использует расширенные возможности, которые не поддерживаются вашим браузером.", "feature_warning": "Вы можете продолжать пользоваться этим браузером, но некоторые возможности будут недоступны и интерфейс может быть отрисован неправильно.",
"Powered by Matrix": "На технологии Matrix", "features": "%(brand)s использует расширенные возможности, которые не поддерживаются вашим браузером.",
"Use %(brand)s on mobile": "Воспользуйтесь %(brand)s на мобильном телефоне", "summary": "Ваш браузер не может запустить %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Децентрализованное, зашифрованное общение и сотрудничество на основе $matrixLogo", "title": "Неподдерживаемый браузер"
"%(brand)s Desktop: %(platformName)s": "%(brand)s Рабочий стол: %(platformName)s", },
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s на %(osName)s" "powered_by_matrix": "На технологии Matrix",
"powered_by_matrix_with_logo": "Децентрализованное, зашифрованное общение и сотрудничество на основе $matrixLogo",
"unknown_device": "Неизвестное устройство",
"use_brand_on_mobile": "Воспользуйтесь %(brand)s на мобильном телефоне",
"web_default_device_name": "%(appName)s: %(browserName)s на %(osName)s",
"welcome_to_element": "Добро пожаловать в Element"
} }

View File

@ -1,3 +1,5 @@
{ {
"Unexpected error preparing the app. See console for details.": "Unexpectit error came up gittin the app set up. See the console? Mair details ur thare." "error": {
"app_launch_unexpected_error": "Unexpectit error came up gittin the app set up. See the console? Mair details ur thare."
}
} }

View File

@ -1,29 +1,34 @@
{ {
"Unknown device": "නොදන්නා උපාංගයකි", "action": {
"Welcome to Element": "ඉලමන්ට් වෙත සාදරයෙන් පිළිගනිමු", "dismiss": "ඉවතලන්න",
"Open": "විවෘත කරන්න", "open": "විවෘත කරන්න"
"Powered by Matrix": "මැට්‍රික්ස් මඟින් බලගන්වා ඇත", },
"Sign In": "පිවිසෙන්න", "auth": {
"Dismiss": "ඉවතලන්න", "sso_complete_in_browser_dialog_title": "පිවිසීම සම්පූර්ණ කිරීමට ඔබගේ අතිරික්සුව වෙත යන්න"
"Explore rooms": "කාමර බලන්න", },
"Create Account": "ගිණුමක් සාදන්න", "download_completed": "බාගැනීම සම්පූර්ණයි",
"Failed to start": "ඇරඹීමට අපොහොසත් විය", "error": {
"Go to element.io": "element.io වෙත යන්න", "app_launch_unexpected_error": "යෙදුම සූදානමේදී අනපේක්‍ෂිත දෝෂයකි. විස්තර සඳහා හසුරුවම බලන්න.",
"Your browser can't run %(brand)s": "ඔබගේ අතිරික්සුවට %(brand)s ධාවනය කළ නොහැකිය", "cannot_load_config": "වින්‍යාස ගොනුව පූරණය කළ නොහැකිය: පිටුව නැවුම් කරන්න.",
"Unsupported browser": "සහය නොදක්වන අතිරික්සුව කි", "invalid_configuration_no_server": "වින්‍යාසය වලංගු නොවේ: පෙරනිමි සේවාදායකයක් දක්වා නැත.",
"Go to your browser to complete Sign In": "පිවිසීම සම්පූර්ණ කිරීමට ඔබගේ අතිරික්සුව වෙත යන්න", "invalid_json": "ඔබගේ ඉලෙමන්ට් වින්‍යාසයෙහි වැරදි JSON අඩංගුය. ගැටලුව නිවැරදි කර පිටුව නැවුම් කරන්න.",
"Download Completed": "බාගැනීම සම්පූර්ණයි", "invalid_json_detail": "විග්‍රහය වෙතින් පණිවිඩය: %(message)s",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "ඔබගේ වත්මන් අතිරික්සුව සහාය නොදක්වන උසස් විශේෂාංග %(brand)s භාවිත කරයි.", "invalid_json_generic": "JSON වලංගු නොවේ",
"The message from the parser is: %(message)s": "විග්‍රහය වෙතින් පණිවිඩය: %(message)s", "misconfigured": "ඉලෙමන්ට් වැරදියට වින්‍යාසගතයි"
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "ඔබගේ ඉලෙමන්ට් වින්‍යාසයෙහි වැරදි JSON අඩංගුය. ගැටලුව නිවැරදි කර පිටුව නැවුම් කරන්න.", },
"Invalid configuration: no default server specified.": "වින්‍යාසය වලංගු නොවේ: පෙරනිමි සේවාදායකයක් දක්වා නැත.", "failed_to_start": "ඇරඹීමට අපොහොසත් විය",
"Your Element is misconfigured": "ඉලෙමන්ට් වැරදියට වින්‍යාසගතයි", "go_to_element_io": "element.io වෙත යන්න",
"Unable to load config file: please refresh the page to try again.": "වින්‍යාස ගොනුව පූරණය කළ නොහැකිය: පිටුව නැවුම් කරන්න.", "incompatible_browser": {
"Unexpected error preparing the app. See console for details.": "යෙදුම සූදානමේදී අනපේක්‍ෂිත දෝෂයකි. විස්තර සඳහා හසුරුවම බලන්න.", "browser_links": "ඉහළ අත්දැකීමකට <chromeLink>ක්‍රෝම්</chromeLink>, <firefoxLink>ෆයර්ෆොකස්</firefoxLink>, හෝ <safariLink>සෆාරි</safariLink> ස්ථාපනය කරන්න.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "ඉහළ අත්දැකීමකට <chromeLink>ක්‍රෝම්</chromeLink>, <firefoxLink>ෆයර්ෆොකස්</firefoxLink>, හෝ <safariLink>සෆාරි</safariLink> ස්ථාපනය කරන්න.", "continue_warning": "අවදානම වැටහේ, ඉදිරියට යාමට කැමැත්තෙමි",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "වත්මන් අතිරික්සුව දිගටම භාවිතා කළ හැකිය, නමුත් සමහර හෝ සියළුම විශේෂාංග ක්‍රියා නොකරන අතර යෙදුමේ පෙනුම වෙනස් විය හැකිය.", "feature_warning": "වත්මන් අතිරික්සුව දිගටම භාවිතා කළ හැකිය, නමුත් සමහර හෝ සියළුම විශේෂාංග ක්‍රියා නොකරන අතර යෙදුමේ පෙනුම වෙනස් විය හැකිය.",
"I understand the risks and wish to continue": "අවදානම වැටහේ, ඉදිරියට යාමට කැමැත්තෙමි", "features": "ඔබගේ වත්මන් අතිරික්සුව සහාය නොදක්වන උසස් විශේෂාංග %(brand)s භාවිත කරයි.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "විමධ්‍යගත, සංකේතිත කතාබහ සහ amp; $matrixLogo මගින් බලගැන්වූ සහයෝගිත්වය", "summary": "ඔබගේ අතිරික්සුවට %(brand)s ධාවනය කළ නොහැකිය",
"Use %(brand)s on mobile": "දුරකථනය සඳහා %(brand)s", "title": "සහය නොදක්වන අතිරික්සුව කි"
"Invalid JSON": "JSON වලංගු නොවේ" },
"powered_by_matrix": "මැට්‍රික්ස් මඟින් බලගන්වා ඇත",
"powered_by_matrix_with_logo": "විමධ්‍යගත, සංකේතිත කතාබහ සහ amp; $matrixLogo මගින් බලගැන්වූ සහයෝගිත්වය",
"unknown_device": "නොදන්නා උපාංගයකි",
"use_brand_on_mobile": "දුරකථනය සඳහා %(brand)s",
"welcome_to_element": "ඉලමන්ට් වෙත සාදරයෙන් පිළිගනිමු"
} }

View File

@ -1,32 +1,37 @@
{ {
"Unknown device": "Neznáme zariadenie", "action": {
"Dismiss": "Zamietnuť", "dismiss": "Zamietnuť",
"Welcome to Element": "Víta vás Element", "open": "Otvoriť"
"Sign In": "Prihlásiť sa", },
"Create Account": "Vytvoriť účet", "auth": {
"Explore rooms": "Preskúmať miestnosti", "sso_complete_in_browser_dialog_title": "Prejdite do prehliadača a dokončite prihlásenie"
"The message from the parser is: %(message)s": "Správa z parsera je: %(message)s", },
"Invalid JSON": "Neplatný JSON", "desktop_default_device_name": "%(brand)s Stolný počítač: %(platformName)s",
"Unexpected error preparing the app. See console for details.": "Neočakávaná chyba počas pripravovania aplikácie. Pre podrobnosti pozri konzolu.", "download_completed": "Preberanie dokončené",
"Invalid configuration: no default server specified.": "Neplatné nastavenie: nebol určený východiskový server.", "error": {
"Unable to load config file: please refresh the page to try again.": "Nemožno načítať konfiguračný súbor: prosím obnovte stránku a skúste to znova.", "app_launch_unexpected_error": "Neočakávaná chyba počas pripravovania aplikácie. Pre podrobnosti pozri konzolu.",
"Go to your browser to complete Sign In": "Prejdite do prehliadača a dokončite prihlásenie", "cannot_load_config": "Nemožno načítať konfiguračný súbor: prosím obnovte stránku a skúste to znova.",
"Unsupported browser": "Nepodporovaný prehliadač", "invalid_configuration_mixed_server": "Neplatná konfigurácia: default_hs_url nemôže byť určená spolu s default_server_name alebo default_server_config",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Prosím, nainštalujte si <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> alebo <safariLink>Safari</safariLink> pre najlepší zážitok.", "invalid_configuration_no_server": "Neplatné nastavenie: nebol určený východiskový server.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Môžete naďalej používať váš súčasný prehliadač, ale niektoré alebo všetky funkcie nemusia fungovať a zážitok z aplikácie nemusí byť optimálny.", "invalid_json": "Vaša konfigurácia Elementu obsahuje nesprávny údaj JSON. Prosím, opravte chybu a obnovte stránku.",
"I understand the risks and wish to continue": "Rozumiem riziku a chcem pokračovať", "invalid_json_detail": "Správa z parsera je: %(message)s",
"Go to element.io": "Prejsť na element.io", "invalid_json_generic": "Neplatný JSON",
"Failed to start": "Spustenie zlyhalo", "misconfigured": "Váš Element je nesprávne nastavený"
"Download Completed": "Preberanie dokončené", },
"Open": "Otvoriť", "failed_to_start": "Spustenie zlyhalo",
"Your Element is misconfigured": "Váš Element je nesprávne nastavený", "go_to_element_io": "Prejsť na element.io",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Vaša konfigurácia Elementu obsahuje nesprávny údaj JSON. Prosím, opravte chybu a obnovte stránku.", "incompatible_browser": {
"Your browser can't run %(brand)s": "Váš prehliadač nedokáže spustiť %(brand)s", "browser_links": "Prosím, nainštalujte si <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> alebo <safariLink>Safari</safariLink> pre najlepší zážitok.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s používa pokročilé funkcie prehliadača, ktoré nie sú podporované vaším aktuálnym prehliadačom.", "continue_warning": "Rozumiem riziku a chcem pokračovať",
"Powered by Matrix": "používa protokol Matrix", "feature_warning": "Môžete naďalej používať váš súčasný prehliadač, ale niektoré alebo všetky funkcie nemusia fungovať a zážitok z aplikácie nemusí byť optimálny.",
"Use %(brand)s on mobile": "Používať %(brand)s na mobilnom zariadení", "features": "%(brand)s používa pokročilé funkcie prehliadača, ktoré nie sú podporované vaším aktuálnym prehliadačom.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentralizované, šifrované konverzácie a spolupráca na platforme $matrixLogo", "summary": "Váš prehliadač nedokáže spustiť %(brand)s",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s na %(osName)s", "title": "Nepodporovaný prehliadač"
"%(brand)s Desktop: %(platformName)s": "%(brand)s Stolný počítač: %(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Neplatná konfigurácia: default_hs_url nemôže byť určená spolu s default_server_name alebo default_server_config" "powered_by_matrix": "používa protokol Matrix",
"powered_by_matrix_with_logo": "Decentralizované, šifrované konverzácie a spolupráca na platforme $matrixLogo",
"unknown_device": "Neznáme zariadenie",
"use_brand_on_mobile": "Používať %(brand)s na mobilnom zariadení",
"web_default_device_name": "%(appName)s: %(browserName)s na %(osName)s",
"welcome_to_element": "Víta vás Element"
} }

View File

@ -1,32 +1,37 @@
{ {
"Unknown device": "Neznana naprava", "action": {
"Dismiss": "Opusti", "dismiss": "Opusti",
"Welcome to Element": "Dobrodošli v Element", "open": "Odpri"
"Sign In": "Prijava", },
"Create Account": "Registracija", "auth": {
"Explore rooms": "Raziščite sobe", "sso_complete_in_browser_dialog_title": "Nadaljujte s prijavo v spletnem brskalniku"
"Invalid configuration: no default server specified.": "Neveljavna konfiguracija: privzeti strežnik ni nastavljen.", },
"Your Element is misconfigured": "Vaš Element je napačno nastavljen", "desktop_default_device_name": "%(brand)s Namizni računalnik: %(platformName)s",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Konfiguracije vašega Elementa vsebujejo neveljaven JSON. Prosim, popravite napako in znova naložite stran.", "download_completed": "Prenos zaključen",
"The message from the parser is: %(message)s": "Sporočilo parserja je: %(message)s", "error": {
"Invalid JSON": "Neveljaven JSON", "app_launch_unexpected_error": "Nepričakovana napaka pri pripravi aplikacije: Za več poglejte konzolo.",
"Unable to load config file: please refresh the page to try again.": "Ni uspelo naložiti konfiguracijske datoteke: prosim, ponovno naložite stran.", "cannot_load_config": "Ni uspelo naložiti konfiguracijske datoteke: prosim, ponovno naložite stran.",
"Unexpected error preparing the app. See console for details.": "Nepričakovana napaka pri pripravi aplikacije: Za več poglejte konzolo.", "invalid_configuration_mixed_server": "Nepravilna konfiguracija: če določite default_server_name ali default_server_config default_hs_url ne more biti določen",
"Download Completed": "Prenos zaključen", "invalid_configuration_no_server": "Neveljavna konfiguracija: privzeti strežnik ni nastavljen.",
"Open": "Odpri", "invalid_json": "Konfiguracije vašega Elementa vsebujejo neveljaven JSON. Prosim, popravite napako in znova naložite stran.",
"Go to your browser to complete Sign In": "Nadaljujte s prijavo v spletnem brskalniku", "invalid_json_detail": "Sporočilo parserja je: %(message)s",
"Powered by Matrix": "Poganja Matrix", "invalid_json_generic": "Neveljaven JSON",
"Unsupported browser": "Nepodprt brskalnik", "misconfigured": "Vaš Element je napačno nastavljen"
"Your browser can't run %(brand)s": "Vaš brskalnik ne more poganjati %(brand)s", },
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s uporablja napredne lastnosti brskalnika, ki jih vaš trenutni brskalnik ne podpira.", "failed_to_start": "Neuspel zagon",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Za najboljšo izkušnjo, prosim namestite <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ali <safariLink>Safari</safariLink>.", "go_to_element_io": "Pojdi na element.io",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Lahko nadaljujete z uporabo vašega trenutnega brskalnika, vendar lahko to privede do manjkajočih funkcionalnosti ali napačnega izgleda aplikacije.", "incompatible_browser": {
"I understand the risks and wish to continue": "Razumem tveganje in želim vseeno nadaljevati", "browser_links": "Za najboljšo izkušnjo, prosim namestite <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ali <safariLink>Safari</safariLink>.",
"Go to element.io": "Pojdi na element.io", "continue_warning": "Razumem tveganje in želim vseeno nadaljevati",
"Failed to start": "Neuspel zagon", "feature_warning": "Lahko nadaljujete z uporabo vašega trenutnega brskalnika, vendar lahko to privede do manjkajočih funkcionalnosti ali napačnega izgleda aplikacije.",
"Use %(brand)s on mobile": "Uporabi %(brand)s na mobilni napravi", "features": "%(brand)s uporablja napredne lastnosti brskalnika, ki jih vaš trenutni brskalnik ne podpira.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentraliziran, šifriran pogovor in sodelovanje, omogočen z $matrixLogo", "summary": "Vaš brskalnik ne more poganjati %(brand)s",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s na %(osName)s", "title": "Nepodprt brskalnik"
"%(brand)s Desktop: %(platformName)s": "%(brand)s Namizni računalnik: %(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Nepravilna konfiguracija: če določite default_server_name ali default_server_config default_hs_url ne more biti določen" "powered_by_matrix": "Poganja Matrix",
"powered_by_matrix_with_logo": "Decentraliziran, šifriran pogovor in sodelovanje, omogočen z $matrixLogo",
"unknown_device": "Neznana naprava",
"use_brand_on_mobile": "Uporabi %(brand)s na mobilni napravi",
"web_default_device_name": "%(appName)s: %(browserName)s na %(osName)s",
"welcome_to_element": "Dobrodošli v Element"
} }

View File

@ -1,32 +1,37 @@
{ {
"Unknown device": "Pajisje e panjohur", "action": {
"Dismiss": "Mos e merr parasysh", "dismiss": "Mos e merr parasysh",
"Welcome to Element": "Mirë se vini te Element", "open": "Hape"
"Sign In": "Hyni", },
"Create Account": "Krijoni Llogari", "auth": {
"Explore rooms": "Eksploroni dhoma", "sso_complete_in_browser_dialog_title": "Që të plotësoni Hyrjen, kaloni te shfletuesi juaj"
"Unexpected error preparing the app. See console for details.": "Gabim i papritur gjatë përgatitjes së aplikacionit. Për hollësi, shihni konsolën.", },
"Invalid configuration: no default server specified.": "Formësim i pavlefshëm: sështë caktuar shërbyes parazgjedhje.", "desktop_default_device_name": "%(brand)s për Desktop: %(platformName)s",
"The message from the parser is: %(message)s": "Mesazhi prej procesit është: %(message)s", "download_completed": "Shkarkim i Plotësuar",
"Invalid JSON": "JSON i pavlefshëm", "error": {
"Go to your browser to complete Sign In": "Që të plotësoni Hyrjen, kaloni te shfletuesi juaj", "app_launch_unexpected_error": "Gabim i papritur gjatë përgatitjes së aplikacionit. Për hollësi, shihni konsolën.",
"Unable to load config file: please refresh the page to try again.": "Sarrihet të ngarkohet kartelë formësimesh: ju lutemi, rifreskoni faqen dhe riprovoni.", "cannot_load_config": "Sarrihet të ngarkohet kartelë formësimesh: ju lutemi, rifreskoni faqen dhe riprovoni.",
"Unsupported browser": "Shfletues i pambuluar", "invalid_configuration_mixed_server": "Formësim i pavlefshëm: një default_hs_url smund të jepet tok me default_server_name, apo default_server_config",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Ju lutemi, për funksionimin më të mirë, instaloni <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ose <safariLink>Safari</safariLink>.", "invalid_configuration_no_server": "Formësim i pavlefshëm: sështë caktuar shërbyes parazgjedhje.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Mund të vazhdoni të përdorni shfletuesin tuaj të tanishëm, por disa ose krejt veçoritë mund të mos funksionojnë dhe pamja dhe ndjesitë prej aplikacionit të mos jenë të sakta.", "invalid_json": "Formësimi juaj i Element-it përmban JSON të pavlefshëm. Ju lutemi, ndreqeni problemin dhe ringarkoni faqen.",
"I understand the risks and wish to continue": "I kuptoj rreziqet dhe dëshiroj të vazhdoj", "invalid_json_detail": "Mesazhi prej procesit është: %(message)s",
"Go to element.io": "Shko te element.io", "invalid_json_generic": "JSON i pavlefshëm",
"Failed to start": "Su arrit të nisej", "misconfigured": "Element-i juaj është i keqformësuar"
"Download Completed": "Shkarkim i Plotësuar", },
"Open": "Hape", "failed_to_start": "Su arrit të nisej",
"Your Element is misconfigured": "Element-i juaj është i keqformësuar", "go_to_element_io": "Shko te element.io",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Formësimi juaj i Element-it përmban JSON të pavlefshëm. Ju lutemi, ndreqeni problemin dhe ringarkoni faqen.", "incompatible_browser": {
"Your browser can't run %(brand)s": "Shfletuesi juaj smund të xhirojë %(brand)s", "browser_links": "Ju lutemi, për funksionimin më të mirë, instaloni <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ose <safariLink>Safari</safariLink>.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s përdor veçori të thelluara të shfletuesit, të cilat shfletuesi juaj i tanishëm si mbulon.", "continue_warning": "I kuptoj rreziqet dhe dëshiroj të vazhdoj",
"Powered by Matrix": "Bazuar në Matrix", "feature_warning": "Mund të vazhdoni të përdorni shfletuesin tuaj të tanishëm, por disa ose krejt veçoritë mund të mos funksionojnë dhe pamja dhe ndjesitë prej aplikacionit të mos jenë të sakta.",
"Use %(brand)s on mobile": "Përdor %(brand)s në celular", "features": "%(brand)s përdor veçori të thelluara të shfletuesit, të cilat shfletuesi juaj i tanishëm si mbulon.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Fjalosje &amp; bashkëpunim i decentralizuar, i fshehtëzuar, bazuar në $matrixLogo", "summary": "Shfletuesi juaj smund të xhirojë %(brand)s",
"%(brand)s Desktop: %(platformName)s": "%(brand)s për Desktop: %(platformName)s", "title": "Shfletues i pambuluar"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s në %(osName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Formësim i pavlefshëm: një default_hs_url smund të jepet tok me default_server_name, apo default_server_config" "powered_by_matrix": "Bazuar në Matrix",
"powered_by_matrix_with_logo": "Fjalosje &amp; bashkëpunim i decentralizuar, i fshehtëzuar, bazuar në $matrixLogo",
"unknown_device": "Pajisje e panjohur",
"use_brand_on_mobile": "Përdor %(brand)s në celular",
"web_default_device_name": "%(appName)s: %(browserName)s në %(osName)s",
"welcome_to_element": "Mirë se vini te Element"
} }

View File

@ -1,27 +1,32 @@
{ {
"Unknown device": "Непознати уређај", "action": {
"Dismiss": "Одбаци", "dismiss": "Одбаци",
"Welcome to Element": "Добродошли у Елемент", "open": "Отвори"
"Sign In": "Пријави се", },
"Create Account": "Направи налог", "auth": {
"Explore rooms": "Истражи собе", "sso_complete_in_browser_dialog_title": "Отворите ваш прегледач за довршавање пријаве"
"Invalid configuration: no default server specified.": "Погрешно подешавање: подразумевани сервер није наведен.", },
"The message from the parser is: %(message)s": "Порука из парсера: %(message)s", "download_completed": "Преузимање завршено",
"Invalid JSON": "Погрешан JSON", "error": {
"Unexpected error preparing the app. See console for details.": "Неочекивана грешка приликом припреме апликације. Погледајте конзолу за више детаља.", "app_launch_unexpected_error": "Неочекивана грешка приликом припреме апликације. Погледајте конзолу за више детаља.",
"Your Element is misconfigured": "Ваша Елемент апликација је лоше подешена", "cannot_load_config": "Не могу да учитам датотеку подешавања: освежите страницу и покушајте поново.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Подешавање ваше Елемент апликације садржи неисправни „JSON“. Поправите проблем па поново учитајте ову страницу.", "invalid_configuration_no_server": "Погрешно подешавање: подразумевани сервер није наведен.",
"Unable to load config file: please refresh the page to try again.": "Не могу да учитам датотеку подешавања: освежите страницу и покушајте поново.", "invalid_json": "Подешавање ваше Елемент апликације садржи неисправни „JSON“. Поправите проблем па поново учитајте ову страницу.",
"Download Completed": "Преузимање завршено", "invalid_json_detail": "Порука из парсера: %(message)s",
"Open": "Отвори", "invalid_json_generic": "Погрешан JSON",
"Go to your browser to complete Sign In": "Отворите ваш прегледач за довршавање пријаве", "misconfigured": "Ваша Елемент апликација је лоше подешена"
"Unsupported browser": "Неподржан прегледач", },
"Your browser can't run %(brand)s": "Ваш прегледач не може покретати %(brand)s", "failed_to_start": "Неуспех при покретању",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s користи напредне могућности које нису подржане у вашем тренутном прегледачу.", "go_to_element_io": "Иди на element.io",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Инсталирајте <chromeLink>Хром</chromeLink>, <firefoxLink>Фајерфокс</firefoxLink>, или <safariLink>Сафари</safariLink> за најбољи доживљај.", "incompatible_browser": {
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Можете наставити користећи тренутни прегледач али неке могућности можда неће радити и изглед и доживљај апликације може бити лош.", "browser_links": "Инсталирајте <chromeLink>Хром</chromeLink>, <firefoxLink>Фајерфокс</firefoxLink>, или <safariLink>Сафари</safariLink> за најбољи доживљај.",
"I understand the risks and wish to continue": "Разумем ризике и желим да наставим", "continue_warning": "Разумем ризике и желим да наставим",
"Go to element.io": "Иди на element.io", "feature_warning": "Можете наставити користећи тренутни прегледач али неке могућности можда неће радити и изглед и доживљај апликације може бити лош.",
"Failed to start": "Неуспех при покретању", "features": "%(brand)s користи напредне могућности које нису подржане у вашем тренутном прегледачу.",
"Powered by Matrix": "Оснажен од стране Матрикса" "summary": "Ваш прегледач не може покретати %(brand)s",
"title": "Неподржан прегледач"
},
"powered_by_matrix": "Оснажен од стране Матрикса",
"unknown_device": "Непознати уређај",
"welcome_to_element": "Добродошли у Елемент"
} }

View File

@ -1,12 +1,13 @@
{ {
"The message from the parser is: %(message)s": "Poruka iz parsera je: %(message)s", "action": {
"Invalid JSON": "Pogrešan JSON", "dismiss": "Odbaci"
"Unexpected error preparing the app. See console for details.": "Neočekivana greška prilikom pripreme aplikacije. Pogledajte konzolu za više detalja.", },
"Invalid configuration: no default server specified.": "Pogrešno podešavanje: podrazumevani server nije naveden.", "error": {
"Unknown device": "Nepoznat uređaj", "app_launch_unexpected_error": "Neočekivana greška prilikom pripreme aplikacije. Pogledajte konzolu za više detalja.",
"Dismiss": "Odbaci", "invalid_configuration_no_server": "Pogrešno podešavanje: podrazumevani server nije naveden.",
"Welcome to Element": "Dobrodošli u Element", "invalid_json_detail": "Poruka iz parsera je: %(message)s",
"Sign In": "Prijavite se", "invalid_json_generic": "Pogrešan JSON"
"Create Account": "Napravite nalog", },
"Explore rooms": "Istražite sobe" "unknown_device": "Nepoznat uređaj",
"welcome_to_element": "Dobrodošli u Element"
} }

View File

@ -1,32 +1,37 @@
{ {
"Dismiss": "Avvisa", "action": {
"Unknown device": "Okänd enhet", "dismiss": "Avvisa",
"Welcome to Element": "Välkommen till Element", "open": "Öppna"
"Sign In": "Logga in", },
"Create Account": "Skapa konto", "auth": {
"Explore rooms": "Utforska rum", "sso_complete_in_browser_dialog_title": "Gå till din webbläsare för att slutföra inloggningen"
"The message from the parser is: %(message)s": "Meddelandet från parsern är: %(message)s", },
"Invalid JSON": "Ogiltig JSON", "desktop_default_device_name": "%(brand)s Skrivbord: %(platformName)s",
"Unexpected error preparing the app. See console for details.": "Oväntat fel vid appstart. Se konsolen för mer information.", "download_completed": "Nedladdning slutförd",
"Invalid configuration: no default server specified.": "Ogiltiga inställningar: ingen standardserver specificerad.", "error": {
"Go to your browser to complete Sign In": "Gå till din webbläsare för att slutföra inloggningen", "app_launch_unexpected_error": "Oväntat fel vid appstart. Se konsolen för mer information.",
"Unable to load config file: please refresh the page to try again.": "Kan inte ladda konfigurationsfilen: ladda om sidan för att försöka igen.", "cannot_load_config": "Kan inte ladda konfigurationsfilen: ladda om sidan för att försöka igen.",
"Unsupported browser": "Webbläsaren stöds ej", "invalid_configuration_mixed_server": "Ogiltig konfiguration: en default_hs_url kan inte anges tillsammans med default_server_name eller default_server_config",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Installera <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eller <safariLink>Safari</safariLink> för den bästa upplevelsen.", "invalid_configuration_no_server": "Ogiltiga inställningar: ingen standardserver specificerad.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Du kan fortsätta använda din nuvarande webbläsare, men vissa eller alla funktioner kanske inte fungerar och utseendet och känslan av applikationen kan var felaktig.", "invalid_json": "Din Elementkonfiguration innehåller ogiltig JSON. Vänligen rätta till problemet och ladda om sidan.",
"I understand the risks and wish to continue": "Jag förstår riskerna och vill fortsätta", "invalid_json_detail": "Meddelandet från parsern är: %(message)s",
"Go to element.io": "Gå till element.io", "invalid_json_generic": "Ogiltig JSON",
"Failed to start": "Misslyckade att starta", "misconfigured": "Din Element är felkonfigurerad"
"Your Element is misconfigured": "Din Element är felkonfigurerad", },
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Din Elementkonfiguration innehåller ogiltig JSON. Vänligen rätta till problemet och ladda om sidan.", "failed_to_start": "Misslyckade att starta",
"Download Completed": "Nedladdning slutförd", "go_to_element_io": "Gå till element.io",
"Open": "Öppna", "incompatible_browser": {
"Powered by Matrix": "Drivs av Matrix", "browser_links": "Installera <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eller <safariLink>Safari</safariLink> för den bästa upplevelsen.",
"Your browser can't run %(brand)s": "Din webbläsare kan inte köra %(brand)s", "continue_warning": "Jag förstår riskerna och vill fortsätta",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s använder avancerade webbläsarfunktioner som inte stöds av din aktuella webbläsare.", "feature_warning": "Du kan fortsätta använda din nuvarande webbläsare, men vissa eller alla funktioner kanske inte fungerar och utseendet och känslan av applikationen kan var felaktig.",
"Use %(brand)s on mobile": "Använd %(brand)s på mobilen", "features": "%(brand)s använder avancerade webbläsarfunktioner som inte stöds av din aktuella webbläsare.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Decentraliserad krypterad chatt &amp; samarbete som drivs av $matrixLogo", "summary": "Din webbläsare kan inte köra %(brand)s",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s på %(osName)s", "title": "Webbläsaren stöds ej"
"%(brand)s Desktop: %(platformName)s": "%(brand)s Skrivbord: %(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Ogiltig konfiguration: en default_hs_url kan inte anges tillsammans med default_server_name eller default_server_config" "powered_by_matrix": "Drivs av Matrix",
"powered_by_matrix_with_logo": "Decentraliserad krypterad chatt &amp; samarbete som drivs av $matrixLogo",
"unknown_device": "Okänd enhet",
"use_brand_on_mobile": "Använd %(brand)s på mobilen",
"web_default_device_name": "%(appName)s: %(browserName)s på %(osName)s",
"welcome_to_element": "Välkommen till Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Mipangilio wa Element yako una JSON batili. Tafadhali sahihisha tatizo na upakie upya ukurasa.", "action": {
"The message from the parser is: %(message)s": "Ujumbe kutoka kwa mchanganuzi ni: %(message)s", "dismiss": "Sisitiza",
"Invalid JSON": "JSON ni batili", "open": "Fungua"
"Unable to load config file: please refresh the page to try again.": "Haiwezekani kupakia faili ya mipangilio: tafadhali pakia upya ukurasa ili kujaribu tena.", },
"Unexpected error preparing the app. See console for details.": "Hitilafu isiyotarajiwa katika kuandaa programu. Tazama console kwa maelezo.", "auth": {
"Download Completed": "Upakuaji Umekamilika", "sso_complete_in_browser_dialog_title": "Nenda kwenye kivinjari chako ili ukamilishe Ingia"
"Open": "Fungua", },
"Dismiss": "Sisitiza", "desktop_default_device_name": "%(brand)s Kompyuta ya mezani: %(platformName)s",
"%(brand)s Desktop: %(platformName)s": "%(brand)s Kompyuta ya mezani: %(platformName)s", "download_completed": "Upakuaji Umekamilika",
"Go to your browser to complete Sign In": "Nenda kwenye kivinjari chako ili ukamilishe Ingia", "error": {
"Unknown device": "Kifaa kisichojulikana", "app_launch_unexpected_error": "Hitilafu isiyotarajiwa katika kuandaa programu. Tazama console kwa maelezo.",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s kwenye%(osName)s", "cannot_load_config": "Haiwezekani kupakia faili ya mipangilio: tafadhali pakia upya ukurasa ili kujaribu tena.",
"Powered by Matrix": "Inaendeshwa na Matrix", "invalid_configuration_no_server": "Mpangilio batili: hakuna seva chaguo-msingi iliyobainishwa.",
"Use %(brand)s on mobile": "Tumia %(brand)s kwenye simu", "invalid_json": "Mipangilio wa Element yako una JSON batili. Tafadhali sahihisha tatizo na upakie upya ukurasa.",
"Unsupported browser": "Kivinjari kisichotumika", "invalid_json_detail": "Ujumbe kutoka kwa mchanganuzi ni: %(message)s",
"Your browser can't run %(brand)s": "Kivinjari chako hakifanyi kazi %(brand)s", "invalid_json_generic": "JSON ni batili",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s hutumia vipengele vya kina vya kivinjari ambavyo havitumiki kwenye kivinjari chako cha sasa.", "misconfigured": "Element yako imesanifiwa vibaya"
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Unaweza kuendelea kutumia kivinjari chako cha sasa, lakini baadhi au vipengele vyote vinaweza kutofanya kazi na muonekano na hisia ya programu inaweza kuwa si sahihi.", },
"I understand the risks and wish to continue": "Ninaelewa hatari na ningependa kuendelea", "failed_to_start": "Imeshindwa kuanza",
"Go to element.io": "Nenda kwenye element.io", "go_to_element_io": "Nenda kwenye element.io",
"Failed to start": "Imeshindwa kuanza", "incompatible_browser": {
"Welcome to Element": "Karibu katika Elementi", "browser_links": "Tafadhali sakinisha <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, au <safariLink>Safari</safariLink> kwa uzoefu bora zaidi.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Tafadhali sakinisha <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, au <safariLink>Safari</safariLink> kwa uzoefu bora zaidi.", "continue_warning": "Ninaelewa hatari na ningependa kuendelea",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Ujumbe umesambazwa, nakufichwa &amp; ushirikiano unaoendeshwa na", "feature_warning": "Unaweza kuendelea kutumia kivinjari chako cha sasa, lakini baadhi au vipengele vyote vinaweza kutofanya kazi na muonekano na hisia ya programu inaweza kuwa si sahihi.",
"Sign In": "Ingia", "features": "%(brand)s hutumia vipengele vya kina vya kivinjari ambavyo havitumiki kwenye kivinjari chako cha sasa.",
"Create Account": "Tengeneza Akaunti", "summary": "Kivinjari chako hakifanyi kazi %(brand)s",
"Explore rooms": "Tafuta nafasi", "title": "Kivinjari kisichotumika"
"Invalid configuration: no default server specified.": "Mpangilio batili: hakuna seva chaguo-msingi iliyobainishwa.", },
"Your Element is misconfigured": "Element yako imesanifiwa vibaya" "powered_by_matrix": "Inaendeshwa na Matrix",
"powered_by_matrix_with_logo": "Ujumbe umesambazwa, nakufichwa &amp; ushirikiano unaoendeshwa na",
"unknown_device": "Kifaa kisichojulikana",
"use_brand_on_mobile": "Tumia %(brand)s kwenye simu",
"web_default_device_name": "%(appName)s: %(browserName)s kwenye%(osName)s",
"welcome_to_element": "Karibu katika Elementi"
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "நீக்கு", "action": {
"Unknown device": "அறியப்படாத சாதனம்", "dismiss": "நீக்கு",
"Welcome to Element": "எலிமெண்டிற்க்கு வரவேற்க்கிறோம்", "open": "திற"
"The message from the parser is: %(message)s": "பாகுபடுத்தி அனுப்பிய செய்தி: %(message)s", },
"Invalid JSON": "தவறான JSON", "auth": {
"Unexpected error preparing the app. See console for details.": "பயன்பாட்டைத் தயார் செய்வதில் எதிர்பாராத பிழை. விவரங்களுக்கு console ஐப் பார்க்கவும்.", "sso_complete_in_browser_dialog_title": "உள்நுழைவை முடிவுசெய்ய உங்கள் உலாவிக்குச் செல்லவும்"
"Invalid configuration: no default server specified.": "தவறான உள்ளமைவு: இயல்புநிலை சேவையகம் குறிப்பிடப்படவில்லை.", },
"Sign In": "உள்நுழைக", "desktop_default_device_name": "%(brand)s டெஸ்க்டாப்: %(platformName)s",
"Create Account": "உங்கள் கணக்கை துவங்குங்கள்", "download_completed": "பதிவிறக்கம் முடிவடைந்தது",
"Explore rooms": "அறைகளை ஆராயுங்கள்", "error": {
"Powered by Matrix": "மேட்ரிக்ஸ் மூலம் இயக்கப்படுகிறது", "app_launch_unexpected_error": "பயன்பாட்டைத் தயார் செய்வதில் எதிர்பாராத பிழை. விவரங்களுக்கு console ஐப் பார்க்கவும்.",
"Failed to start": "துவங்குவதில் தோல்வி", "cannot_load_config": "கட்டமைப்பு கோப்பை ஏற்ற முடியவில்லை: மீண்டும் முயற்சிக்க பக்கத்தைப் புதுப்பிக்கவும்.",
"Go to element.io": "element.io க்குச் செல்லவும்", "invalid_configuration_no_server": "தவறான உள்ளமைவு: இயல்புநிலை சேவையகம் குறிப்பிடப்படவில்லை.",
"I understand the risks and wish to continue": "நான் அபாயங்களைப் புரிந்துகொண்டு தொடர விரும்புகிறேன்", "invalid_json": "உங்கள் எலிமெண்ட் உள்ளமைவில் தவறான JSON உள்ளது. தயவுசெய்து இதை சரிசெய்து பக்கத்தை மீண்டும் ஏற்றவும்.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "உங்கள் தற்போதைய உலாவியை நீங்கள் தொடர்ந்து பயன்படுத்தலாம், ஆனால் சில அல்லது அனைத்து அம்சங்களும் செயல்படாமல் போகலாம் மற்றும் பயன்பாட்டின் தோற்றமும் உணர்வும் தவறாக இருக்கலாம்.", "invalid_json_detail": "பாகுபடுத்தி அனுப்பிய செய்தி: %(message)s",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "சிறந்த அனுபவத்திற்காக <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, அல்லது அதை <safariLink>Safari</safariLink> ஐ நிறுவவும்.", "invalid_json_generic": "தவறான JSON",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s உங்கள் தற்போதைய உலாவியால் ஆதரிக்கப்படாத மேம்பட்ட உலாவி அம்சங்களைப் பயன்படுத்துகிறது.", "misconfigured": "உங்கள் எலிமெண்ட் தவறாக உள்ளமைக்கப்பட்டுள்ளது"
"Your browser can't run %(brand)s": "உங்கள் உலாவியில் %(brand)s ஐ இயக்க முடியாது", },
"Unsupported browser": "ஆதரிக்கப்படாத உலாவி", "failed_to_start": "துவங்குவதில் தோல்வி",
"Use %(brand)s on mobile": "%(brand)s ஐ திறன்பேசியில் பயன்படுத்தவும்", "go_to_element_io": "element.io க்குச் செல்லவும்",
"Go to your browser to complete Sign In": "உள்நுழைவை முடிவுசெய்ய உங்கள் உலாவிக்குச் செல்லவும்", "incompatible_browser": {
"Open": "திற", "browser_links": "சிறந்த அனுபவத்திற்காக <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, அல்லது அதை <safariLink>Safari</safariLink> ஐ நிறுவவும்.",
"Download Completed": "பதிவிறக்கம் முடிவடைந்தது", "continue_warning": "நான் அபாயங்களைப் புரிந்துகொண்டு தொடர விரும்புகிறேன்",
"Unable to load config file: please refresh the page to try again.": "கட்டமைப்பு கோப்பை ஏற்ற முடியவில்லை: மீண்டும் முயற்சிக்க பக்கத்தைப் புதுப்பிக்கவும்.", "feature_warning": "உங்கள் தற்போதைய உலாவியை நீங்கள் தொடர்ந்து பயன்படுத்தலாம், ஆனால் சில அல்லது அனைத்து அம்சங்களும் செயல்படாமல் போகலாம் மற்றும் பயன்பாட்டின் தோற்றமும் உணர்வும் தவறாக இருக்கலாம்.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "உங்கள் எலிமெண்ட் உள்ளமைவில் தவறான JSON உள்ளது. தயவுசெய்து இதை சரிசெய்து பக்கத்தை மீண்டும் ஏற்றவும்.", "features": "%(brand)s உங்கள் தற்போதைய உலாவியால் ஆதரிக்கப்படாத மேம்பட்ட உலாவி அம்சங்களைப் பயன்படுத்துகிறது.",
"Your Element is misconfigured": "உங்கள் எலிமெண்ட் தவறாக உள்ளமைக்கப்பட்டுள்ளது", "summary": "உங்கள் உலாவியில் %(brand)s ஐ இயக்க முடியாது",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "மேட்ரிக்ஸ் இனால் செயற்படுத்தபடுகின்ற பரவலாக்கப்பட்ட, மறைகுறியாக்கப்பட்ட , உரையாடல் மற்றும் ஒத்துழைப்பு பயன்பாட்டை", "title": "ஆதரிக்கப்படாத உலாவி"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s இல் %(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s டெஸ்க்டாப்: %(platformName)s" "powered_by_matrix": "மேட்ரிக்ஸ் மூலம் இயக்கப்படுகிறது",
"powered_by_matrix_with_logo": "மேட்ரிக்ஸ் இனால் செயற்படுத்தபடுகின்ற பரவலாக்கப்பட்ட, மறைகுறியாக்கப்பட்ட , உரையாடல் மற்றும் ஒத்துழைப்பு பயன்பாட்டை",
"unknown_device": "அறியப்படாத சாதனம்",
"use_brand_on_mobile": "%(brand)s ஐ திறன்பேசியில் பயன்படுத்தவும்",
"web_default_device_name": "%(appName)s: %(browserName)s இல் %(osName)s",
"welcome_to_element": "எலிமெண்டிற்க்கு வரவேற்க்கிறோம்"
} }

View File

@ -1,13 +1,17 @@
{ {
"Dismiss": "రద్దుచేయి", "action": {
"Unknown device": "తెలియని పరికరము", "dismiss": "రద్దుచేయి",
"Go to element.io": "element.io కు వెళ్ళు", "open": "తెరువు"
"I understand the risks and wish to continue": "నాకు పర్యవసానాలు తెలిసే ముందుకు కొనసాగుతా", },
"Explore rooms": "గదులను అన్వేెషించు", "download_completed": "దిగుమతి పూర్తయినది",
"Welcome to Element": "ఎలిమెంట్ కు స్వాగతం", "error": {
"Failed to start": "ప్రారంభించుటలో విఫలం", "app_launch_unexpected_error": "ఆప్ ని తయారు చేసే ప్రక్రియాలో అనుకోని లోపం తలెత్తింది. మరిన్ని వివరాల కోసం కాన్సోల్ ను చూడండి."
"Create Account": "ఖాతా తెరువు", },
"Open": "తెరువు", "failed_to_start": "ప్రారంభించుటలో విఫలం",
"Download Completed": "దిగుమతి పూర్తయినది", "go_to_element_io": "element.io కు వెళ్ళు",
"Unexpected error preparing the app. See console for details.": "ఆప్ ని తయారు చేసే ప్రక్రియాలో అనుకోని లోపం తలెత్తింది. మరిన్ని వివరాల కోసం కాన్సోల్ ను చూడండి." "incompatible_browser": {
"continue_warning": "నాకు పర్యవసానాలు తెలిసే ముందుకు కొనసాగుతా"
},
"unknown_device": "తెలియని పరికరము",
"welcome_to_element": "ఎలిమెంట్ కు స్వాగతం"
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "ปิด", "action": {
"Unknown device": "อุปกรณ์ที่ไม่รู้จัก", "dismiss": "ปิด",
"Welcome to Element": "ยินดีต้อนรับสู่ Element", "open": "เปิด"
"The message from the parser is: %(message)s": "ข้อความจากตัวแยกวิเคราะห์คือ: %(message)s", },
"Invalid JSON": "JSON ไม่ถูกต้อง", "auth": {
"Sign In": "ลงชื่อเข้า", "sso_complete_in_browser_dialog_title": "ไปที่เบราว์เซอร์ของคุณเพื่อลงชื่อเข้าใช้ให้เสร็จสมบูรณ์."
"Create Account": "สร้างบัญชี", },
"Explore rooms": "สำรวจห้อง", "desktop_default_device_name": "%(brand)s เดสก์ทอป: %(platformName)s",
"Download Completed": "การดาวน์โหลดเสร็จสมบูรณ์", "download_completed": "การดาวน์โหลดเสร็จสมบูรณ์",
"Go to element.io": "ไปยัง element.io", "error": {
"Failed to start": "ไม่สามารถเริ่ม", "app_launch_unexpected_error": "เกิดข้อผิดพลาดที่ไม่คาดคิดขณะการเตรียมพร้อมโปรแกรม. คุณสามารถดูรายละเอียดข้อผิดพลาดได้ที่หน้าคอนโซล.",
"Open": "เปิด", "cannot_load_config": "ไม่สามารถโหลดการตั้งค่า: โปรดรีเฟรชหน้าเว็บเพื่อลองใหม่อีกครั้ง.",
"Powered by Matrix": "ขับเคลื่อนโดย Matrix", "invalid_configuration_no_server": "คุณยังไม่ได้ตั้งค่าเซิฟเวอร์หลักในการตั้งค่า.",
"Unexpected error preparing the app. See console for details.": "เกิดข้อผิดพลาดที่ไม่คาดคิดขณะการเตรียมพร้อมโปรแกรม. คุณสามารถดูรายละเอียดข้อผิดพลาดได้ที่หน้าคอนโซล.", "invalid_json": "การตั้งค่าของ Element จะต้องอยู่ในรูปแบบ JSON. โปรดแก้ไขการตั้งค่าและโหลดหน้านี้ใหม่อีกครั้ง.",
"Unable to load config file: please refresh the page to try again.": "ไม่สามารถโหลดการตั้งค่า: โปรดรีเฟรชหน้าเว็บเพื่อลองใหม่อีกครั้ง.", "invalid_json_detail": "ข้อความจากตัวแยกวิเคราะห์คือ: %(message)s",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "การตั้งค่าของ Element จะต้องอยู่ในรูปแบบ JSON. โปรดแก้ไขการตั้งค่าและโหลดหน้านี้ใหม่อีกครั้ง.", "invalid_json_generic": "JSON ไม่ถูกต้อง",
"Your Element is misconfigured": "การตั้งค่าของคุณไม่ถูกต้อง", "misconfigured": "การตั้งค่าของคุณไม่ถูกต้อง"
"Invalid configuration: no default server specified.": "คุณยังไม่ได้ตั้งค่าเซิฟเวอร์หลักในการตั้งค่า.", },
"I understand the risks and wish to continue": "ฉันเข้าใจความเสี่ยง และดำเนินการต่อ", "failed_to_start": "ไม่สามารถเริ่ม",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "กรุณาติดตั้ง <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, หรือ <safariLink>Safari</safariLink> เพื่อประสิทธิภาพการใช้งานที่ดีที่สุด.", "go_to_element_io": "ไปยัง element.io",
"Your browser can't run %(brand)s": "เบราว์เซอร์ของคุณไม่สามารถใช้งาน %(brand)s ได้", "incompatible_browser": {
"Unsupported browser": "เบราว์เซอร์ไม่รองรับ", "browser_links": "กรุณาติดตั้ง <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, หรือ <safariLink>Safari</safariLink> เพื่อประสิทธิภาพการใช้งานที่ดีที่สุด.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "การกระจายศูนย์, แชทที่เข้ารหัส &amp; ขับเคลื่อนโดย $matrixLogo", "continue_warning": "ฉันเข้าใจความเสี่ยง และดำเนินการต่อ",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s บน %(osName)s", "feature_warning": "คุณสามารถใช้เบราว์เซอร์ปัจจุบันของคุณต่อไปได้ แต่คุณสมบัติบางอย่างหรือทั้งหมดอาจไม่ทำงาน และรูปลักษณ์ของแอปพลิเคชันอาจไม่ถูกต้อง.",
"%(brand)s Desktop: %(platformName)s": "%(brand)s เดสก์ทอป: %(platformName)s", "features": "%(brand)s ใช้คุณลักษณะขั้นสูงของเบราว์เซอร์ซึ่งไม่รองรับโดยเบราว์เซอร์ปัจจุบันของคุณ.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "คุณสามารถใช้เบราว์เซอร์ปัจจุบันของคุณต่อไปได้ แต่คุณสมบัติบางอย่างหรือทั้งหมดอาจไม่ทำงาน และรูปลักษณ์ของแอปพลิเคชันอาจไม่ถูกต้อง.", "summary": "เบราว์เซอร์ของคุณไม่สามารถใช้งาน %(brand)s ได้",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s ใช้คุณลักษณะขั้นสูงของเบราว์เซอร์ซึ่งไม่รองรับโดยเบราว์เซอร์ปัจจุบันของคุณ.", "title": "เบราว์เซอร์ไม่รองรับ"
"Use %(brand)s on mobile": "ใช้ %(brand)s บนมือถือ", },
"Go to your browser to complete Sign In": "ไปที่เบราว์เซอร์ของคุณเพื่อลงชื่อเข้าใช้ให้เสร็จสมบูรณ์." "powered_by_matrix": "ขับเคลื่อนโดย Matrix",
"powered_by_matrix_with_logo": "การกระจายศูนย์, แชทที่เข้ารหัส &amp; ขับเคลื่อนโดย $matrixLogo",
"unknown_device": "อุปกรณ์ที่ไม่รู้จัก",
"use_brand_on_mobile": "ใช้ %(brand)s บนมือถือ",
"web_default_device_name": "%(appName)s: %(browserName)s บน %(osName)s",
"welcome_to_element": "ยินดีต้อนรับสู่ Element"
} }

View File

@ -1,29 +1,34 @@
{ {
"Dismiss": "Kapat", "action": {
"Unknown device": "Bilinmeyen aygıt", "dismiss": "Kapat",
"Welcome to Element": "Element'e hoş geldiniz", "open": "Aç"
"Sign In": "Giriş Yap", },
"Create Account": "Hesap Oluştur", "auth": {
"Explore rooms": "Odaları keşfet", "sso_complete_in_browser_dialog_title": "Oturum açmayı tamamlamak için tarayıcınıza gidin"
"Invalid JSON": "Hatalı JSON", },
"Unexpected error preparing the app. See console for details.": "Uygulama hazırlanırken beklenmeyen bir hata oldu. Detaylar için konsola bakın.", "download_completed": "İndirme Tamamlandı",
"Invalid configuration: no default server specified.": "Hatalı ayarlar: varsayılan sunucu belirlenmemiş.", "error": {
"The message from the parser is: %(message)s": "Ayrıştırıcıdan gelen mesaj: %(message)s", "app_launch_unexpected_error": "Uygulama hazırlanırken beklenmeyen bir hata oldu. Detaylar için konsola bakın.",
"Go to your browser to complete Sign In": "Oturum açmayı tamamlamak için tarayıcınıza gidin", "cannot_load_config": "Yapılandırma (config) dosyası yüklenemedi: lütfen yeniden denemek için sayfayı yenileyin.",
"Your Element is misconfigured": "Element uygulaması hatalı ayarlanmış", "invalid_configuration_no_server": "Hatalı ayarlar: varsayılan sunucu belirlenmemiş.",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Element uygulamasının ayarları hatalı JSON içeriyor. Lütfen hatayı düzeltip sayfayı yenileyin.", "invalid_json": "Element uygulamasının ayarları hatalı JSON içeriyor. Lütfen hatayı düzeltip sayfayı yenileyin.",
"Unable to load config file: please refresh the page to try again.": "Yapılandırma (config) dosyası yüklenemedi: lütfen yeniden denemek için sayfayı yenileyin.", "invalid_json_detail": "Ayrıştırıcıdan gelen mesaj: %(message)s",
"Download Completed": "İndirme Tamamlandı", "invalid_json_generic": "Hatalı JSON",
"Unsupported browser": "Desteklenmeyen tarayıcı", "misconfigured": "Element uygulaması hatalı ayarlanmış"
"Your browser can't run %(brand)s": "Tarayıcınız %(brand)s uygulamasını çalıştıramıyor", },
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s, kullandığınız tarayıcı tarafından desteklenmeyen, gelişmiş tarayıcı özellikleri kullanıyor.", "failed_to_start": "Başlatılamadı",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Daha iyi bir deneyim için lütfen <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ya da <safariLink>Safari</safariLink> tarayıcılarından birini yükleyin.", "go_to_element_io": "element.io adresine git",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Şu anda kullanmış olduğunuz tarayıcınızı kullanmaya devam edebilirsiniz ancak uygulamanın sunduğu bazı ya da bütün özellikler çalışmayabilir ve deneyiminizi kötü yönde etkileyebilir.", "incompatible_browser": {
"I understand the risks and wish to continue": "Riskleri anlıyorum ve devam etmek istiyorum", "browser_links": "Daha iyi bir deneyim için lütfen <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ya da <safariLink>Safari</safariLink> tarayıcılarından birini yükleyin.",
"Go to element.io": "element.io adresine git", "continue_warning": "Riskleri anlıyorum ve devam etmek istiyorum",
"Failed to start": "Başlatılamadı", "feature_warning": "Şu anda kullanmış olduğunuz tarayıcınızı kullanmaya devam edebilirsiniz ancak uygulamanın sunduğu bazı ya da bütün özellikler çalışmayabilir ve deneyiminizi kötü yönde etkileyebilir.",
"Powered by Matrix": "Gücünü Matrix'ten alır", "features": "%(brand)s, kullandığınız tarayıcı tarafından desteklenmeyen, gelişmiş tarayıcı özellikleri kullanıyor.",
"Open": "Aç", "summary": "Tarayıcınız %(brand)s uygulamasını çalıştıramıyor",
"Use %(brand)s on mobile": "Mobilde %(brand)s kullan", "title": "Desteklenmeyen tarayıcı"
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "$matrixLogo tarafından merkeziyetsiz, şifrelenmiş sohbet &amp; iş birliği" },
"powered_by_matrix": "Gücünü Matrix'ten alır",
"powered_by_matrix_with_logo": "$matrixLogo tarafından merkeziyetsiz, şifrelenmiş sohbet &amp; iş birliği",
"unknown_device": "Bilinmeyen aygıt",
"use_brand_on_mobile": "Mobilde %(brand)s kullan",
"welcome_to_element": "Element'e hoş geldiniz"
} }

View File

@ -1,14 +1,18 @@
{ {
"Create Account": "senflul amiḍan", "action": {
"Download Completed": "Ittusmed wagam", "dismiss": "Nexxel",
"Powered by Matrix": "Ittusker s Matrix", "open": "Ṛẓem"
"Sign In": "Kcem", },
"Go to your browser to complete Sign In": "Ddu ɣer umessara fad ad tsemded azemmem", "auth": {
"Welcome to Element": "Azul g Element", "sso_complete_in_browser_dialog_title": "Ddu ɣer umessara fad ad tsemded azemmem"
"Go to element.io": "Ddu ɣer element.io", },
"Unknown device": "Allal arussin", "download_completed": "Ittusmed wagam",
"Dismiss": "Nexxel", "error": {
"Open": "Ṛẓem", "invalid_json_detail": "Tuzint n umeslad: %(message)s"
"The message from the parser is: %(message)s": "Tuzint n umeslad: %(message)s", },
"Use %(brand)s on mobile": "Semres %(brand)s g utilifun" "go_to_element_io": "Ddu ɣer element.io",
"powered_by_matrix": "Ittusker s Matrix",
"unknown_device": "Allal arussin",
"use_brand_on_mobile": "Semres %(brand)s g utilifun",
"welcome_to_element": "Azul g Element"
} }

View File

@ -1,32 +1,37 @@
{ {
"Dismiss": "Відхилити", "action": {
"Unknown device": "Невідомий пристрій", "dismiss": "Відхилити",
"Welcome to Element": "Ласкаво просимо до Element", "open": "Відкрити"
"Sign In": "Увійти", },
"Create Account": "Створити обліковий запис", "auth": {
"Explore rooms": "Каталог кімнат", "sso_complete_in_browser_dialog_title": "Перейдіть у ваш браузер щоб завершити вхід"
"Unexpected error preparing the app. See console for details.": "Неочікувана помилка при підготовці програми. Дивіться деталі у виводі консолі.", },
"Invalid configuration: no default server specified.": "Невірна конфігурація: не вказано сервер за замовчуванням.", "desktop_default_device_name": "%(brand)s для комп'ютера: %(platformName)s",
"The message from the parser is: %(message)s": "Повідомлення від аналізатора : %(message)s", "download_completed": "Завантаження завершено",
"Invalid JSON": "Хибний JSON", "error": {
"Unsupported browser": "Непідтримуваний браузер", "app_launch_unexpected_error": "Неочікувана помилка при підготовці програми. Дивіться деталі у виводі консолі.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Для найкращих вражень від користування встановіть, будь ласка, <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, або <safariLink>Safari</safariLink>.", "cannot_load_config": "Неможливо завантажити файл конфігурації. Оновіть, будь ласка, сторінку, щоб спробувати знову.",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Ви можете продовжити, користуючись вашим поточним браузером, але деякі функції можуть не працювати, а застосунок може виглядати неправильно.", "invalid_configuration_mixed_server": "Неправильна конфігурація: не можна вказати default_hs_url разом з default_server_name або default_server_config",
"I understand the risks and wish to continue": "Я усвідомлюю ризик і бажаю продовжити", "invalid_configuration_no_server": "Невірна конфігурація: не вказано сервер за замовчуванням.",
"Go to element.io": "Перейти на element.io", "invalid_json": "Ваша конфігурація Element містить хибний JSON. Виправте проблему та оновіть сторінку.",
"Failed to start": "Не вдалося запустити", "invalid_json_detail": "Повідомлення від аналізатора : %(message)s",
"Download Completed": "Завантаження завершено", "invalid_json_generic": "Хибний JSON",
"Your Element is misconfigured": "Ваш Element налаштовано неправильно", "misconfigured": "Ваш Element налаштовано неправильно"
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Ваша конфігурація Element містить хибний JSON. Виправте проблему та оновіть сторінку.", },
"Unable to load config file: please refresh the page to try again.": "Неможливо завантажити файл конфігурації. Оновіть, будь ласка, сторінку, щоб спробувати знову.", "failed_to_start": "Не вдалося запустити",
"Open": "Відкрити", "go_to_element_io": "Перейти на element.io",
"Go to your browser to complete Sign In": "Перейдіть у ваш браузер щоб завершити вхід", "incompatible_browser": {
"Powered by Matrix": "Працює на Matrix", "browser_links": "Для найкращих вражень від користування встановіть, будь ласка, <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, або <safariLink>Safari</safariLink>.",
"Your browser can't run %(brand)s": "Ваш браузер не може запустити %(brand)s", "continue_warning": "Я усвідомлюю ризик і бажаю продовжити",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s використовує передові властивості, які ваш браузер не підтримує.", "feature_warning": "Ви можете продовжити, користуючись вашим поточним браузером, але деякі функції можуть не працювати, а застосунок може виглядати неправильно.",
"Use %(brand)s on mobile": "Користуйтеся %(brand)s на мобільному", "features": "%(brand)s використовує передові властивості, які ваш браузер не підтримує.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Децентралізована, зашифрована бесіда та співпраця на основі $matrixLogo", "summary": "Ваш браузер не може запустити %(brand)s",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s на %(osName)s", "title": "Непідтримуваний браузер"
"%(brand)s Desktop: %(platformName)s": "%(brand)s для комп'ютера: %(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Неправильна конфігурація: не можна вказати default_hs_url разом з default_server_name або default_server_config" "powered_by_matrix": "Працює на Matrix",
"powered_by_matrix_with_logo": "Децентралізована, зашифрована бесіда та співпраця на основі $matrixLogo",
"unknown_device": "Невідомий пристрій",
"use_brand_on_mobile": "Користуйтеся %(brand)s на мобільному",
"web_default_device_name": "%(appName)s: %(browserName)s на %(osName)s",
"welcome_to_element": "Ласкаво просимо до Element"
} }

View File

@ -1,6 +1,6 @@
{ {
"Create Account": "Ro'yxatdan o'tish", "action": {
"Sign In": "Kirish", "dismiss": "Bekor qilish",
"Dismiss": "Bekor qilish", "open": "Ochiq"
"Open": "Ochiq" }
} }

View File

@ -1,32 +1,37 @@
{ {
"Unknown device": "Thiết bị không xác định", "action": {
"Dismiss": "Bỏ qua", "dismiss": "Bỏ qua",
"Welcome to Element": "Chào mừng tới Element", "open": "Mở"
"Unexpected error preparing the app. See console for details.": "Có lỗi xảy ra trong lúc thiết lập ứng dụng. Mở bảng điều khiển (console) để biết chi tiết.", },
"The message from the parser is: %(message)s": "Thông báo của trình xử lý là: %(message)s", "auth": {
"Invalid JSON": "JSON không hợp lệ", "sso_complete_in_browser_dialog_title": "Mở trình duyệt web để hoàn thành đăng nhập"
"Invalid configuration: no default server specified.": "Thiết lập không hợp lệ: chưa chỉ định máy chủ mặc định.", },
"Sign In": "Đăng nhập", "desktop_default_device_name": "%(brand)s máy tính: %(platformName)s",
"Create Account": "Tạo tài khoản", "download_completed": "Tải xuống hoàn tất",
"Explore rooms": "Khám phá các phòng", "error": {
"Download Completed": "Tải xuống hoàn tất", "app_launch_unexpected_error": "Có lỗi xảy ra trong lúc thiết lập ứng dụng. Mở bảng điều khiển (console) để biết chi tiết.",
"Go to element.io": "Qua element.io", "cannot_load_config": "Không thể tải tệp cấu hình: hãy tải lại trang để thử lại.",
"I understand the risks and wish to continue": "Tôi hiểu rủi ro và muốn tiếp tục", "invalid_configuration_mixed_server": "Cấu hình không hợp lệ: không thể xác định default_hs_url song song với default_server_name hay default_server_config",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "Bạn có thể tiếp tục sử dụng trình duyệt hiện tại, tuy nhiên các tính năng có thể sẽ không hoạt động và trải nghiệm ứng dụng có thể sẽ không được tốt.", "invalid_configuration_no_server": "Thiết lập không hợp lệ: chưa chỉ định máy chủ mặc định.",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Hãy cài đặt <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, hoặc <safariLink>Safari</safariLink> để có trải nghiệm tốt nhất.", "invalid_json": "Thiết lập Element của bạn đang chứa mã JSON không hợp lệ. Vui lòng sửa lại và tải lại trang.",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s sử dụng một số tính năng nâng cao mà trình duyệt của bạn không thể đáp ứng.", "invalid_json_detail": "Thông báo của trình xử lý là: %(message)s",
"Your browser can't run %(brand)s": "Trình duyệt của bạn không thể chạy %(brand)s", "invalid_json_generic": "JSON không hợp lệ",
"Unsupported browser": "Trình duyệt không được hỗ trợ", "misconfigured": "Element đang bị thiết lập sai"
"Go to your browser to complete Sign In": "Mở trình duyệt web để hoàn thành đăng nhập", },
"Open": "Mở", "failed_to_start": "Không khởi động được",
"Unable to load config file: please refresh the page to try again.": "Không thể tải tệp cấu hình: hãy tải lại trang để thử lại.", "go_to_element_io": "Qua element.io",
"Failed to start": "Không khởi động được", "incompatible_browser": {
"Use %(brand)s on mobile": "Sử dụng %(brand)s trên di động", "browser_links": "Hãy cài đặt <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, hoặc <safariLink>Safari</safariLink> để có trải nghiệm tốt nhất.",
"Powered by Matrix": "Chạy trên giao thức Matrix", "continue_warning": "Tôi hiểu rủi ro và muốn tiếp tục",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Thiết lập Element của bạn đang chứa mã JSON không hợp lệ. Vui lòng sửa lại và tải lại trang.", "feature_warning": "Bạn có thể tiếp tục sử dụng trình duyệt hiện tại, tuy nhiên các tính năng có thể sẽ không hoạt động và trải nghiệm ứng dụng có thể sẽ không được tốt.",
"Your Element is misconfigured": "Element đang bị thiết lập sai", "features": "%(brand)s sử dụng một số tính năng nâng cao mà trình duyệt của bạn không thể đáp ứng.",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "Dịch vụ nhắn tin &amp; liên lạc được mã hóa, phi tập trung. Được vận hành trên $matrixLogo", "summary": "Trình duyệt của bạn không thể chạy %(brand)s",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s trên %(osName)s", "title": "Trình duyệt không được hỗ trợ"
"%(brand)s Desktop: %(platformName)s": "%(brand)s máy tính: %(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "Cấu hình không hợp lệ: không thể xác định default_hs_url song song với default_server_name hay default_server_config" "powered_by_matrix": "Chạy trên giao thức Matrix",
"powered_by_matrix_with_logo": "Dịch vụ nhắn tin &amp; liên lạc được mã hóa, phi tập trung. Được vận hành trên $matrixLogo",
"unknown_device": "Thiết bị không xác định",
"use_brand_on_mobile": "Sử dụng %(brand)s trên di động",
"web_default_device_name": "%(appName)s: %(browserName)s trên %(osName)s",
"welcome_to_element": "Chào mừng tới Element"
} }

View File

@ -1,13 +1,16 @@
{ {
"Unexpected error preparing the app. See console for details.": "t Is een onverwachte foute ipgetreedn by t voorbereidn van den app. Bekykt de console vo details.", "action": {
"Invalid configuration: no default server specified.": "Oungeldige configuroasje: geen standoardserver ingegeevn.", "dismiss": "Afwyzn"
"Unknown device": "Ounbekend toestel", },
"Dismiss": "Afwyzn", "auth": {
"Welcome to Element": "Welgekommn by Element", "sso_complete_in_browser_dialog_title": "Goa noa je browser voe danmeldienge te voltooin"
"Sign In": "Anmeldn", },
"Create Account": "Account anmoakn", "error": {
"Explore rooms": "Gesprekkn ountdekkn", "app_launch_unexpected_error": "t Is een onverwachte foute ipgetreedn by t voorbereidn van den app. Bekykt de console vo details.",
"The message from the parser is: %(message)s": "t Bericht van de verwerker is: %(message)s", "invalid_configuration_no_server": "Oungeldige configuroasje: geen standoardserver ingegeevn.",
"Invalid JSON": "Oungeldigen JSON", "invalid_json_detail": "t Bericht van de verwerker is: %(message)s",
"Go to your browser to complete Sign In": "Goa noa je browser voe danmeldienge te voltooin" "invalid_json_generic": "Oungeldigen JSON"
},
"unknown_device": "Ounbekend toestel",
"welcome_to_element": "Welgekommn by Element"
} }

View File

@ -1,31 +1,36 @@
{ {
"Dismiss": "忽略", "action": {
"Unknown device": "未知设备", "dismiss": "忽略",
"Welcome to Element": "欢迎来到 Element", "open": "打开"
"Sign In": "登录", },
"Create Account": "创建账户", "auth": {
"Explore rooms": "探索房间", "sso_complete_in_browser_dialog_title": "转到您的浏览器以完成登录"
"The message from the parser is: %(message)s": "来自解析器的消息:%(message)s", },
"Invalid JSON": "无效的 JSON", "desktop_default_device_name": "%(brand)s桌面版%(platformName)s",
"Unexpected error preparing the app. See console for details.": "准备软件时出现意外错误,详细信息请查看控制台。", "download_completed": "下载完成",
"Invalid configuration: no default server specified.": "配置无效:没有指定默认服务器。", "error": {
"Unable to load config file: please refresh the page to try again.": "无法加载配置文件:请刷新页面以重试。", "app_launch_unexpected_error": "准备软件时出现意外错误,详细信息请查看控制台。",
"Go to your browser to complete Sign In": "转到您的浏览器以完成登录", "cannot_load_config": "无法加载配置文件:请刷新页面以重试。",
"Unsupported browser": "不支持的浏览器", "invalid_configuration_no_server": "配置无效:没有指定默认服务器。",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "请安装 <chromeLink>Chrome</chromeLink>、<firefoxLink>Firefox</firefoxLink> 或 <safariLink>Safari</safariLink> 以获得最佳体验。", "invalid_json": "Element 配置文件中包含无效的 JSON。请改正错误并重新加载页面。",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "您可以继续使用您目前的浏览器,但部分或全部功能可能无法正常工作,应用程序的外观可能也看起来不正确。", "invalid_json_detail": "来自解析器的消息:%(message)s",
"I understand the risks and wish to continue": "我了解风险并希望继续", "invalid_json_generic": "无效的 JSON",
"Go to element.io": "前往 element.io", "misconfigured": "Element 配置错误"
"Failed to start": "启动失败", },
"Your Element is misconfigured": "Element 配置错误", "failed_to_start": "启动失败",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Element 配置文件中包含无效的 JSON。请改正错误并重新加载页面。", "go_to_element_io": "前往 element.io",
"Download Completed": "下载完成", "incompatible_browser": {
"Open": "打开", "browser_links": "请安装 <chromeLink>Chrome</chromeLink>、<firefoxLink>Firefox</firefoxLink> 或 <safariLink>Safari</safariLink> 以获得最佳体验。",
"Your browser can't run %(brand)s": "你的浏览器无法运行 %(brand)s", "continue_warning": "我了解风险并希望继续",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "当前浏览器不支持 %(brand)s 所需的高级浏览器特性。", "feature_warning": "您可以继续使用您目前的浏览器,但部分或全部功能可能无法正常工作,应用程序的外观可能也看起来不正确。",
"Powered by Matrix": "由 Matrix 驱动", "features": "当前浏览器不支持 %(brand)s 所需的高级浏览器特性。",
"Use %(brand)s on mobile": "在移动设备上使用 %(brand)s", "summary": "你的浏览器无法运行 %(brand)s",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "去中心化、加密的聊天与协作,由 $matrixLogo 驱动", "title": "不支持的浏览器"
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s%(browserName)s在%(osName)s", },
"%(brand)s Desktop: %(platformName)s": "%(brand)s桌面版%(platformName)s" "powered_by_matrix": "由 Matrix 驱动",
"powered_by_matrix_with_logo": "去中心化、加密的聊天与协作,由 $matrixLogo 驱动",
"unknown_device": "未知设备",
"use_brand_on_mobile": "在移动设备上使用 %(brand)s",
"web_default_device_name": "%(appName)s%(browserName)s在%(osName)s",
"welcome_to_element": "欢迎来到 Element"
} }

View File

@ -1,32 +1,36 @@
{ {
"Dismiss": "關閉", "action": {
"Unknown device": "未知裝置", "dismiss": "關閉",
"Welcome to Element": "歡迎使用 Element", "open": "開啟"
"Sign In": "登入", },
"Create Account": "建立帳號", "auth": {
"Explore rooms": "探索聊天室", "sso_complete_in_browser_dialog_title": "前往您的瀏覽器以完成登入"
"Unexpected error preparing the app. See console for details.": "準備應用程式時發生未知錯誤。請見主控台以取得更多資訊。", },
"Invalid configuration: no default server specified.": "無效設定:未指定預設伺服器。", "desktop_default_device_name": "%(brand)s 桌面版:%(platformName)s",
"The message from the parser is: %(message)s": "解析器收到的訊息:%(message)s", "download_completed": "下載完成",
"Invalid JSON": "無效的 JSON", "error": {
"Go to your browser to complete Sign In": "前往您的瀏覽器以完成登入", "app_launch_unexpected_error": "準備應用程式時發生未知錯誤。請見主控台以取得更多資訊。",
"Unable to load config file: please refresh the page to try again.": "無法載入設定檔:請重新整理頁面以再試一次。", "cannot_load_config": "無法載入設定檔:請重新整理頁面以再試一次。",
"Unsupported browser": "不支援的瀏覽器", "invalid_configuration_mixed_server": "無效設定default_hs_url 不能與 default_server_name 或 default_server_config 一起指定",
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "請安裝 <chromeLink>Chrome</chromeLink>、<firefoxLink>Firefox</firefoxLink> 或 <safariLink>Safari</safariLink> 以取得最佳體驗。", "invalid_configuration_no_server": "無效設定:未指定預設伺服器。",
"You can continue using your current browser, but some or all features may not work and the look and feel of the application may be incorrect.": "您可以繼續使用目前的瀏覽器,但部份或全部的功能可能會無法運作,而應用程式的外觀與感覺可能也可能不正確。", "invalid_json": "您的 Element 設定中包含無效 JSON請修正後重新載入網頁。",
"I understand the risks and wish to continue": "我了解風險並希望繼續", "invalid_json_detail": "解析器收到的訊息:%(message)s",
"Go to element.io": "前往 element.io", "invalid_json_generic": "無效的 JSON",
"Failed to start": "啟動失敗", "misconfigured": "您的 Element 設定錯誤"
"Download Completed": "下載完成", },
"Open": "開啟", "failed_to_start": "啟動失敗",
"Your Element is misconfigured": "您的 Element 設定錯誤", "go_to_element_io": "前往 element.io",
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "您的 Element 設定中包含無效 JSON請修正後重新載入網頁。", "incompatible_browser": {
"Your browser can't run %(brand)s": "您的瀏覽器無法執行 %(brand)s", "browser_links": "請安裝 <chromeLink>Chrome</chromeLink>、<firefoxLink>Firefox</firefoxLink> 或 <safariLink>Safari</safariLink> 以取得最佳體驗。",
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s 使用了您目前瀏覽器不支援的進階功能。", "continue_warning": "我了解風險並希望繼續",
"Powered by Matrix": "Powered by Matrix", "feature_warning": "您可以繼續使用目前的瀏覽器,但部份或全部的功能可能會無法運作,而應用程式的外觀與感覺可能也可能不正確。",
"Use %(brand)s on mobile": "在行動裝置上使用 %(brand)s", "features": "%(brand)s 使用了您目前瀏覽器不支援的進階功能。",
"Decentralised, encrypted chat &amp; collaboration powered by $matrixLogo": "由 $matrixLogo 驅動的去中心化、加密的聊天與協作工具", "summary": "您的瀏覽器無法執行 %(brand)s",
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s%(osName)s 的 %(browserName)s", "title": "不支援的瀏覽器"
"%(brand)s Desktop: %(platformName)s": "%(brand)s 桌面版:%(platformName)s", },
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config": "無效設定default_hs_url 不能與 default_server_name 或 default_server_config 一起指定" "powered_by_matrix_with_logo": "由 $matrixLogo 驅動的去中心化、加密的聊天與協作工具",
"unknown_device": "未知裝置",
"use_brand_on_mobile": "在行動裝置上使用 %(brand)s",
"web_default_device_name": "%(appName)s%(osName)s 的 %(browserName)s",
"welcome_to_element": "歡迎使用 Element"
} }

View File

@ -153,13 +153,11 @@ async function verifyServerConfig(): Promise<IConfigOptions> {
const incompatibleOptions = [wkConfig, serverName, hsUrl].filter((i) => !!i); const incompatibleOptions = [wkConfig, serverName, hsUrl].filter((i) => !!i);
if (hsUrl && (wkConfig || serverName)) { if (hsUrl && (wkConfig || serverName)) {
// noinspection ExceptionCaughtLocallyJS // noinspection ExceptionCaughtLocallyJS
throw new UserFriendlyError( throw new UserFriendlyError("error|invalid_configuration_mixed_server");
"Invalid configuration: a default_hs_url can't be specified along with default_server_name or default_server_config",
);
} }
if (incompatibleOptions.length < 1) { if (incompatibleOptions.length < 1) {
// noinspection ExceptionCaughtLocallyJS // noinspection ExceptionCaughtLocallyJS
throw new UserFriendlyError("Invalid configuration: no default server specified."); throw new UserFriendlyError("error|invalid_configuration_no_server");
} }
if (hsUrl) { if (hsUrl) {

View File

@ -197,16 +197,14 @@ async function start(): Promise<void> {
// Now that we've loaded the theme (CSS), display the config syntax error if needed. // Now that we've loaded the theme (CSS), display the config syntax error if needed.
if (error instanceof SyntaxError) { if (error instanceof SyntaxError) {
// This uses the default brand since the app config is unavailable. // This uses the default brand since the app config is unavailable.
return showError(_t("Your Element is misconfigured"), [ return showError(_t("error|misconfigured"), [
_t( _t("error|invalid_json"),
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.", _t("error|invalid_json_detail", {
), message: error.message || _t("error|invalid_json_generic"),
_t("The message from the parser is: %(message)s", {
message: error.message || _t("Invalid JSON"),
}), }),
]); ]);
} }
return showError(_t("Unable to load config file: please refresh the page to try again.")); return showError(_t("error|cannot_load_config"));
} }
// ################################## // ##################################
@ -230,8 +228,8 @@ async function start(): Promise<void> {
logger.error(err); logger.error(err);
// Like the compatibility page, AWOOOOOGA at the user // Like the compatibility page, AWOOOOOGA at the user
// This uses the default brand since the app config is unavailable. // This uses the default brand since the app config is unavailable.
await showError(_t("Your Element is misconfigured"), [ await showError(_t("error|misconfigured"), [
extractErrorMessageFromError(err, _t("Unexpected error preparing the app. See console for details.")), extractErrorMessageFromError(err, _t("error|app_launch_unexpected_error")),
]); ]);
} }
} }

View File

@ -150,12 +150,12 @@ export default class ElectronPlatform extends VectorBasePlatform {
ToastStore.sharedInstance().addOrReplaceToast({ ToastStore.sharedInstance().addOrReplaceToast({
key, key,
title: _t("Download Completed"), title: _t("download_completed"),
props: { props: {
description: name, description: name,
acceptLabel: _t("Open"), acceptLabel: _t("action|open"),
onAccept, onAccept,
dismissLabel: _t("Dismiss"), dismissLabel: _t("action|dismiss"),
onDismiss, onDismiss,
numSeconds: 10, numSeconds: 10,
}, },
@ -313,7 +313,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
public getDefaultDeviceDisplayName(): string { public getDefaultDeviceDisplayName(): string {
const brand = SdkConfig.get().brand; const brand = SdkConfig.get().brand;
return _t("%(brand)s Desktop: %(platformName)s", { return _t("desktop_default_device_name", {
brand, brand,
platformName: platformFriendlyName(), platformName: platformFriendlyName(),
}); });
@ -390,7 +390,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
// this will get intercepted by electron-main will-navigate // this will get intercepted by electron-main will-navigate
super.startSingleSignOn(mxClient, loginType, fragmentAfterLogin, idpId); super.startSingleSignOn(mxClient, loginType, fragmentAfterLogin, idpId);
Modal.createDialog(InfoDialog, { Modal.createDialog(InfoDialog, {
title: _t("Go to your browser to complete Sign In"), title: _t("auth|sso_complete_in_browser_dialog_title"),
description: <Spinner />, description: <Spinner />,
}); });
} }

View File

@ -85,6 +85,6 @@ export default abstract class VectorBasePlatform extends BasePlatform {
* device Vector is running on * device Vector is running on
*/ */
public getDefaultDeviceDisplayName(): string { public getDefaultDeviceDisplayName(): string {
return _t("Unknown device"); return _t("unknown_device");
} }
} }

View File

@ -202,7 +202,7 @@ export default class WebPlatform extends VectorBasePlatform {
let osName = ua.getOS().name || "unknown OS"; let osName = ua.getOS().name || "unknown OS";
// Stylise the value from the parser to match Apple's current branding. // Stylise the value from the parser to match Apple's current branding.
if (osName === "Mac OS") osName = "macOS"; if (osName === "Mac OS") osName = "macOS";
return _t("%(appName)s: %(browserName)s on %(osName)s", { return _t("web_default_device_name", {
appName, appName,
browserName, browserName,
osName, osName,

View File

@ -273,7 +273,7 @@ describe("loading:", function () {
await waitForElementToBeRemoved(() => screen.queryAllByLabelText("Loading...")); await waitForElementToBeRemoved(() => screen.queryAllByLabelText("Loading..."));
// we expect a single <Login> component // we expect a single <Login> component
await screen.findByRole("main"); await screen.findByRole("main");
screen.getAllByText("Sign in"); screen.getAllByText("Sign In");
// the only outstanding request should be a GET /login // the only outstanding request should be a GET /login
// (in particular there should be no /register request for // (in particular there should be no /register request for
@ -378,7 +378,7 @@ describe("loading:", function () {
await awaitRoomView(matrixChat); await awaitRoomView(matrixChat);
await screen.findByLabelText("Spaces"); await screen.findByLabelText("Spaces");
expect(screen.queryAllByText("Sign in")).toHaveLength(0); expect(screen.queryAllByText("Sign In")).toHaveLength(0);
}); });
}); });
}); });
@ -544,7 +544,7 @@ describe("loading:", function () {
it("should give us a login page", async function () { it("should give us a login page", async function () {
// we expect a single <Login> component // we expect a single <Login> component
await screen.findByRole("main"); await screen.findByRole("main");
screen.getAllByText("Sign in"); screen.getAllByText("Sign In");
expect(windowLocation?.hash).toEqual("#/login"); expect(windowLocation?.hash).toEqual("#/login");
}); });
@ -631,7 +631,7 @@ describe("loading:", function () {
// Enter login details // Enter login details
fireEvent.change(matrixChat.container.querySelector("#mx_LoginForm_username")!, { target: { value: "user" } }); fireEvent.change(matrixChat.container.querySelector("#mx_LoginForm_username")!, { target: { value: "user" } });
fireEvent.change(matrixChat.container.querySelector("#mx_LoginForm_password")!, { target: { value: "pass" } }); fireEvent.change(matrixChat.container.querySelector("#mx_LoginForm_password")!, { target: { value: "pass" } });
fireEvent.click(screen.getByText("Sign in", { selector: ".mx_Login_submit" })); fireEvent.click(screen.getByText("Sign In", { selector: ".mx_Login_submit" }));
return httpBackend return httpBackend
.flush(undefined) .flush(undefined)

View File

@ -0,0 +1,30 @@
/*
Copyright 2023 The Matrix.org Foundation C.I.C.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
import fetchMock from "fetch-mock-jest";
import _ from "lodash";
import { setupLanguageMock as reactSetupLanguageMock } from "matrix-react-sdk/test/setup/setupLanguage";
import en from "../../src/i18n/strings/en_EN.json";
import reactEn from "../../src/i18n/strings/en_EN.json";
fetchMock.config.overwriteRoutes = false;
export function setupLanguageMock() {
reactSetupLanguageMock();
fetchMock.get("end:en_EN.json", _.merge(en, reactEn), { overwriteRoutes: true });
}
setupLanguageMock();

View File

@ -2492,6 +2492,11 @@
resolved "https://registry.yarnpkg.com/@types/jsrsasign/-/jsrsasign-10.5.8.tgz#0d6c638505454b5e95c684d6f604d57641417336" resolved "https://registry.yarnpkg.com/@types/jsrsasign/-/jsrsasign-10.5.8.tgz#0d6c638505454b5e95c684d6f604d57641417336"
integrity sha512-1oZ3TbarAhKtKUpyrCIqXpbx3ZAfoSulleJs6/UzzyYty0ut+kjRX7zHLAaHwVIuw8CBjIymwW4J2LK944HoHQ== integrity sha512-1oZ3TbarAhKtKUpyrCIqXpbx3ZAfoSulleJs6/UzzyYty0ut+kjRX7zHLAaHwVIuw8CBjIymwW4J2LK944HoHQ==
"@types/lodash@^4.14.197":
version "4.14.197"
resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.197.tgz#e95c5ddcc814ec3e84c891910a01e0c8a378c54b"
integrity sha512-BMVOiWs0uNxHVlHBgzTIqJYmj+PgCo4euloGF+5m4okL3rEYzM2EEv78mw8zWSMM57dM7kVIgJ2QDvwHSoCI5g==
"@types/mapbox__point-geometry@*", "@types/mapbox__point-geometry@^0.1.2": "@types/mapbox__point-geometry@*", "@types/mapbox__point-geometry@^0.1.2":
version "0.1.2" version "0.1.2"
resolved "https://registry.yarnpkg.com/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz#488a9b76e8457d6792ea2504cdd4ecdd9860a27e" resolved "https://registry.yarnpkg.com/@types/mapbox__point-geometry/-/mapbox__point-geometry-0.1.2.tgz#488a9b76e8457d6792ea2504cdd4ecdd9860a27e"
@ -8885,14 +8890,15 @@ matrix-mock-request@^2.5.0:
what-input "^5.2.10" what-input "^5.2.10"
zxcvbn "^4.4.2" zxcvbn "^4.4.2"
matrix-web-i18n@^2.0.0: matrix-web-i18n@^3.1.1:
version "2.1.0" version "3.1.1"
resolved "https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-2.1.0.tgz#bab2db9ac462773de829053b4b8d43c11154a85b" resolved "https://registry.yarnpkg.com/matrix-web-i18n/-/matrix-web-i18n-3.1.1.tgz#da851748515b20ca15fa986817bbce2e242b3dd6"
integrity sha512-z+B9D/PkWYB4O9SP4lsG4KNA2V3ypMWstP+lreft1c1wz6L5R1U3ennp+cs3yOsylBfcK+xLRvkwLNZsU6QEUA== integrity sha512-BOeOTedtONIqVQUlyHFXpxXkrETWdCoJdToyA+edMU+yGjKOW7bekAd9uAEfkV9jErP5eXw3cHYsKZPpa8ifWg==
dependencies: dependencies:
"@babel/parser" "^7.18.5" "@babel/parser" "^7.18.5"
"@babel/traverse" "^7.18.5" "@babel/traverse" "^7.18.5"
lodash "^4.17.21" lodash "^4.17.21"
minimist "^1.2.8"
walk "^2.3.15" walk "^2.3.15"
matrix-widget-api@^1.3.1, matrix-widget-api@^1.5.0: matrix-widget-api@^1.3.1, matrix-widget-api@^1.5.0:
@ -9150,7 +9156,7 @@ minimist-options@4.1.0:
is-plain-obj "^1.1.0" is-plain-obj "^1.1.0"
kind-of "^6.0.3" kind-of "^6.0.3"
minimist@>=1.2.2, minimist@^1.1.0, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6: minimist@>=1.2.2, minimist@^1.1.0, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.8:
version "1.2.8" version "1.2.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==