Merge branch 'develop' into germain-gg/room-ui-develop
This commit is contained in:
commit
1e303652cc
114 changed files with 2462 additions and 2900 deletions
|
@ -19,7 +19,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
overrides: [
|
overrides: [
|
||||||
{
|
{
|
||||||
files: ["src/**/*.{ts,tsx}", "test/**/*.{ts,tsx}"],
|
files: ["src/**/*.{ts,tsx}", "test/**/*.{ts,tsx}", "scripts/*.ts"],
|
||||||
extends: ["plugin:matrix-org/typescript", "plugin:matrix-org/react"],
|
extends: ["plugin:matrix-org/typescript", "plugin:matrix-org/react"],
|
||||||
// NOTE: These rules are frozen and new rules should not be added here.
|
// NOTE: These rules are frozen and new rules should not be added here.
|
||||||
// New changes belong in https://github.com/matrix-org/eslint-plugin-matrix-org/
|
// New changes belong in https://github.com/matrix-org/eslint-plugin-matrix-org/
|
||||||
|
|
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
name: "Build"
|
name: "Build"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
|
2
.github/workflows/build_debian.yaml
vendored
2
.github/workflows/build_debian.yaml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
R2_INCOMING_BUCKET: ${{ vars.R2_INCOMING_BUCKET }}
|
R2_INCOMING_BUCKET: ${{ vars.R2_INCOMING_BUCKET }}
|
||||||
R2_URL: ${{ vars.CF_R2_S3_API }}
|
R2_URL: ${{ vars.CF_R2_S3_API }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Prepare
|
- name: Prepare
|
||||||
run: |
|
run: |
|
||||||
|
|
2
.github/workflows/build_develop.yml
vendored
2
.github/workflows/build_develop.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
R2_URL: ${{ vars.CF_R2_S3_API }}
|
R2_URL: ${{ vars.CF_R2_S3_API }}
|
||||||
R2_PUBLIC_URL: "https://element-web-develop.element.io"
|
R2_PUBLIC_URL: "https://element-web-develop.element.io"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
|
4
.github/workflows/dockerhub.yaml
vendored
4
.github/workflows/dockerhub.yaml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
environment: dockerhub
|
environment: dockerhub
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0 # needed for docker-package to be able to calculate the version
|
fetch-depth: 0 # needed for docker-package to be able to calculate the version
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@ jobs:
|
||||||
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
|
uses: docker/setup-qemu-action@2b82ce82d56a2a04d2637cd93a637ae1b359c0a7 # v2
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@4c0219f9ac95b02789c1075625400b2acbff50b1 # v2
|
uses: docker/setup-buildx-action@885d1462b80bc1c1c7f0b00334ad271f09369c55 # v2
|
||||||
with:
|
with:
|
||||||
install: true
|
install: true
|
||||||
|
|
||||||
|
|
8
.github/workflows/localazy_download.yaml
vendored
Normal file
8
.github/workflows/localazy_download.yaml
vendored
Normal 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
11
.github/workflows/localazy_upload.yaml
vendored
Normal 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 }}
|
10
.github/workflows/static_analysis.yaml
vendored
10
.github/workflows/static_analysis.yaml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
name: "Typescript Syntax Check"
|
name: "Typescript Syntax Check"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
@ -28,13 +28,13 @@ 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"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
@ -51,7 +51,7 @@ jobs:
|
||||||
name: "Style Lint"
|
name: "Style Lint"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
@ -68,7 +68,7 @@ jobs:
|
||||||
name: "Analyse Dead Code"
|
name: "Analyse Dead Code"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- uses: actions/setup-node@v3
|
- uses: actions/setup-node@v3
|
||||||
with:
|
with:
|
||||||
|
|
2
.github/workflows/tests.yaml
vendored
2
.github/workflows/tests.yaml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Yarn cache
|
- name: Yarn cache
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v3
|
||||||
|
|
42
CHANGELOG.md
42
CHANGELOG.md
|
@ -1,3 +1,45 @@
|
||||||
|
Changes in [1.11.42](https://github.com/vector-im/element-web/releases/tag/v1.11.42) (2023-09-13)
|
||||||
|
=================================================================================================
|
||||||
|
|
||||||
|
## 🐛 Bug Fixes
|
||||||
|
* Update Compound to fix Firefox-specific avatar regression ([\#11604](https://github.com/matrix-org/matrix-react-sdk/pull/11604)). Fixes #26155.
|
||||||
|
|
||||||
|
Changes in [1.11.41](https://github.com/vector-im/element-web/releases/tag/v1.11.41) (2023-09-12)
|
||||||
|
=================================================================================================
|
||||||
|
|
||||||
|
## 🦖 Deprecations
|
||||||
|
* Deprecate customisations in favour of Module API ([\#25736](https://github.com/vector-im/element-web/pull/25736)). Fixes #25733.
|
||||||
|
|
||||||
|
## ✨ Features
|
||||||
|
* Make SVGR icons use forward ref ([\#26082](https://github.com/vector-im/element-web/pull/26082)).
|
||||||
|
* Add support for rendering a custom wrapper around Element ([\#25537](https://github.com/vector-im/element-web/pull/25537)). Contributed by @maheichyk.
|
||||||
|
* Allow creating public knock rooms ([\#11481](https://github.com/matrix-org/matrix-react-sdk/pull/11481)). Contributed by @charlynguyen.
|
||||||
|
* Render custom images in reactions according to MSC4027 ([\#11087](https://github.com/matrix-org/matrix-react-sdk/pull/11087)). Contributed by @sumnerevans.
|
||||||
|
* Introduce room knocks bar ([\#11475](https://github.com/matrix-org/matrix-react-sdk/pull/11475)). Contributed by @charlynguyen.
|
||||||
|
* Room header UI updates ([\#11507](https://github.com/matrix-org/matrix-react-sdk/pull/11507)). Fixes #25892.
|
||||||
|
* Remove green "verified" bar for encrypted events ([\#11496](https://github.com/matrix-org/matrix-react-sdk/pull/11496)).
|
||||||
|
* Update member count on room summary update ([\#11488](https://github.com/matrix-org/matrix-react-sdk/pull/11488)).
|
||||||
|
* Support for E2EE in Element Call ([\#11492](https://github.com/matrix-org/matrix-react-sdk/pull/11492)).
|
||||||
|
* Allow requesting to join knock rooms via spotlight ([\#11482](https://github.com/matrix-org/matrix-react-sdk/pull/11482)). Contributed by @charlynguyen.
|
||||||
|
* Lock out the first tab if Element is opened in a second tab. ([\#11425](https://github.com/matrix-org/matrix-react-sdk/pull/11425)). Fixes #25157.
|
||||||
|
* Change avatar to use Compound implementation ([\#11448](https://github.com/matrix-org/matrix-react-sdk/pull/11448)).
|
||||||
|
|
||||||
|
## 🐛 Bug Fixes
|
||||||
|
* Fix vertical alignment of default avatar font ([\#11582](https://github.com/matrix-org/matrix-react-sdk/pull/11582)). Fixes #26081.
|
||||||
|
* Fix avatars in public room & space search being flex shrunk ([\#11580](https://github.com/matrix-org/matrix-react-sdk/pull/11580)). Fixes #26133.
|
||||||
|
* Fix EventTile avatars being rendered with a size of 0 instead of hidden ([\#11558](https://github.com/matrix-org/matrix-react-sdk/pull/11558)). Fixes #26075.
|
||||||
|
* Fix compound external assets path in bundle ([\#26069](https://github.com/vector-im/element-web/pull/26069)).
|
||||||
|
* Use RoomStateEvent.Update for knocks ([\#11516](https://github.com/matrix-org/matrix-react-sdk/pull/11516)). Contributed by @charlynguyen.
|
||||||
|
* Prevent event propagation when clicking icon buttons ([\#11515](https://github.com/matrix-org/matrix-react-sdk/pull/11515)).
|
||||||
|
* Only display RoomKnocksBar when feature flag is enabled ([\#11513](https://github.com/matrix-org/matrix-react-sdk/pull/11513)). Contributed by @andybalaam.
|
||||||
|
* Fix avatars of knock members for people tab of room settings ([\#11506](https://github.com/matrix-org/matrix-react-sdk/pull/11506)). Fixes #26083. Contributed by @charlynguyen.
|
||||||
|
* Fixes read receipt avatar offset ([\#11483](https://github.com/matrix-org/matrix-react-sdk/pull/11483)). Fixes #26067, #26064 #26059 and #26061.
|
||||||
|
* Fix avatar defects ([\#11473](https://github.com/matrix-org/matrix-react-sdk/pull/11473)). Fixes #26051 and #26046.
|
||||||
|
* Fix consistent avatar output for Percy ([\#11472](https://github.com/matrix-org/matrix-react-sdk/pull/11472)). Fixes #26049 and #26052.
|
||||||
|
* Fix colour of avatar and colour matching with username ([\#11470](https://github.com/matrix-org/matrix-react-sdk/pull/11470)). Fixes #26042.
|
||||||
|
* Fix incompatibility of Soft Logout with Element-R ([\#11468](https://github.com/matrix-org/matrix-react-sdk/pull/11468)).
|
||||||
|
* Fix instances of double translation and guard translation calls using typescript ([\#11443](https://github.com/matrix-org/matrix-react-sdk/pull/11443)).
|
||||||
|
|
||||||
Changes in [1.11.40](https://github.com/vector-im/element-web/releases/tag/v1.11.40) (2023-08-29)
|
Changes in [1.11.40](https://github.com/vector-im/element-web/releases/tag/v1.11.40) (2023-08-29)
|
||||||
=================================================================================================
|
=================================================================================================
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[](https://matrix.to/#/#element-web:matrix.org)
|
[](https://matrix.to/#/#element-web:matrix.org)
|
||||||

|

|
||||||

|

|
||||||
[](https://translate.element.io/engage/element-web/)
|
[](https://localazy.com/p/element-web)
|
||||||
[](https://sonarcloud.io/summary/new_code?id=element-web)
|
[](https://sonarcloud.io/summary/new_code?id=element-web)
|
||||||
[](https://sonarcloud.io/summary/new_code?id=element-web)
|
[](https://sonarcloud.io/summary/new_code?id=element-web)
|
||||||
[](https://sonarcloud.io/summary/new_code?id=element-web)
|
[](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).
|
||||||
|
|
|
@ -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,40 @@ 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.
|
||||||
|
|
||||||
|
## matrix-react-sdk is still undergoing migration to translation keys
|
||||||
|
|
||||||
|
If you are fortunate enough to be modifying not yet migrated strings please treat them as a new string using instructions below.
|
||||||
|
|
||||||
## 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 +82,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)
|
||||||
|
|
|
@ -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
|
|
||||||
|
|
|
@ -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
37
localazy.json
Normal 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": "en-EN"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
24
package.json
24
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "element-web",
|
"name": "element-web",
|
||||||
"version": "1.11.40",
|
"version": "1.11.42",
|
||||||
"description": "A feature-rich client for Matrix.org",
|
"description": "A feature-rich client for Matrix.org",
|
||||||
"author": "New Vector Ltd.",
|
"author": "New Vector Ltd.",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
@ -30,14 +30,15 @@
|
||||||
"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 --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",
|
||||||
"build:jitsi": "ts-node scripts/build-jitsi.ts",
|
"build:jitsi": "ts-node scripts/build-jitsi.ts",
|
||||||
"build:res": "node scripts/copy-res.js",
|
"build:res": "ts-node scripts/copy-res.ts",
|
||||||
"build:genfiles": "yarn build:res && yarn build:jitsi && yarn build:module_system",
|
"build:genfiles": "yarn build:res && yarn build:jitsi && yarn build:module_system",
|
||||||
"build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js",
|
"build:modernizr": "modernizr -c .modernizr.json -d src/vector/modernizr.js",
|
||||||
"build:bundle": "webpack --progress --bail --mode production",
|
"build:bundle": "webpack --progress --bail --mode production",
|
||||||
|
@ -46,7 +47,7 @@
|
||||||
"dist": "scripts/package.sh",
|
"dist": "scripts/package.sh",
|
||||||
"start": "yarn build:module_system && concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js\"",
|
"start": "yarn build:module_system && concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js\"",
|
||||||
"start:https": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js --https\"",
|
"start:https": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n res,element-js \"yarn start:res\" \"yarn start:js --https\"",
|
||||||
"start:res": "yarn build:jitsi && node scripts/copy-res.js -w",
|
"start:res": "yarn build:jitsi && ts-node scripts/copy-res.ts -w",
|
||||||
"start:js": "webpack-dev-server --output-filename=bundles/_dev_/[name].js --output-chunk-filename=bundles/_dev_/[name].js -w --mode development --disable-host-check --hot",
|
"start:js": "webpack-dev-server --output-filename=bundles/_dev_/[name].js --output-chunk-filename=bundles/_dev_/[name].js -w --mode development --disable-host-check --hot",
|
||||||
"lint": "yarn lint:types && yarn lint:js && yarn lint:style",
|
"lint": "yarn lint:types && yarn lint:js && yarn lint:style",
|
||||||
"lint:js": "yarn lint:js:src && yarn lint:js:module_system",
|
"lint:js": "yarn lint:js:src && yarn lint:js:module_system",
|
||||||
|
@ -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,8 @@
|
||||||
"@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/loader-utils": "^2.0.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",
|
||||||
|
@ -120,13 +124,13 @@
|
||||||
"babel-loader": "^8.2.2",
|
"babel-loader": "^8.2.2",
|
||||||
"chokidar": "^3.5.1",
|
"chokidar": "^3.5.1",
|
||||||
"concurrently": "^8.0.0",
|
"concurrently": "^8.0.0",
|
||||||
"cpx": "^1.5.0",
|
"cpx": "1.5.0",
|
||||||
"css-loader": "^4",
|
"css-loader": "^4",
|
||||||
"dotenv": "^16.0.2",
|
"dotenv": "^16.0.2",
|
||||||
"eslint": "8.45.0",
|
"eslint": "8.48.0",
|
||||||
"eslint-config-google": "^0.14.0",
|
"eslint-config-google": "^0.14.0",
|
||||||
"eslint-config-prettier": "^9.0.0",
|
"eslint-config-prettier": "^9.0.0",
|
||||||
"eslint-plugin-deprecate": "^0.7.0",
|
"eslint-plugin-deprecate": "0.7.0",
|
||||||
"eslint-plugin-import": "^2.26.0",
|
"eslint-plugin-import": "^2.26.0",
|
||||||
"eslint-plugin-matrix-org": "^1.0.0",
|
"eslint-plugin-matrix-org": "^1.0.0",
|
||||||
"eslint-plugin-react": "^7.28.0",
|
"eslint-plugin-react": "^7.28.0",
|
||||||
|
@ -146,7 +150,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",
|
||||||
|
|
|
@ -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 & 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>
|
||||||
|
|
|
@ -1,66 +1,31 @@
|
||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
|
|
||||||
const loaderUtils = require("loader-utils");
|
|
||||||
|
|
||||||
// copies the resources into the webapp directory.
|
// copies the resources into the webapp directory.
|
||||||
//
|
|
||||||
|
|
||||||
// Languages are listed manually, so we can choose when to include a translation in the app
|
import parseArgs from "minimist";
|
||||||
// (because having a translation with only 3 strings translated is just frustrating)
|
import * as chokidar from "chokidar";
|
||||||
// This could readily be automated, but it's nice to explicitly control when new languages are available.
|
import * as fs from "node:fs";
|
||||||
const INCLUDE_LANGS = [
|
import _ from "lodash";
|
||||||
"bg",
|
import { Cpx } from "cpx";
|
||||||
"ca",
|
import * as loaderUtils from "loader-utils";
|
||||||
"cs",
|
import { Translations } from "matrix-web-i18n";
|
||||||
"da",
|
|
||||||
"de_DE",
|
const REACT_I18N_BASE_PATH = "node_modules/matrix-react-sdk/src/i18n/strings/";
|
||||||
"el",
|
const I18N_BASE_PATH = "src/i18n/strings/";
|
||||||
"en_EN",
|
const INCLUDE_LANGS = [...new Set([...fs.readdirSync(I18N_BASE_PATH), ...fs.readdirSync(REACT_I18N_BASE_PATH)])]
|
||||||
"en_US",
|
.filter((fn) => fn.endsWith(".json"))
|
||||||
"eo",
|
.map((f) => f.slice(0, -5));
|
||||||
"es",
|
|
||||||
"et",
|
|
||||||
"eu",
|
|
||||||
"fi",
|
|
||||||
"fr",
|
|
||||||
"gl",
|
|
||||||
"he",
|
|
||||||
"hi",
|
|
||||||
"hu",
|
|
||||||
"id",
|
|
||||||
"is",
|
|
||||||
"it",
|
|
||||||
"ja",
|
|
||||||
"kab",
|
|
||||||
"ko",
|
|
||||||
"lo",
|
|
||||||
"lt",
|
|
||||||
"lv",
|
|
||||||
"nb_NO",
|
|
||||||
"nl",
|
|
||||||
"nn",
|
|
||||||
"pl",
|
|
||||||
"pt",
|
|
||||||
"pt_BR",
|
|
||||||
"ru",
|
|
||||||
"sk",
|
|
||||||
"sq",
|
|
||||||
"sr",
|
|
||||||
"sv",
|
|
||||||
"te",
|
|
||||||
"th",
|
|
||||||
"tr",
|
|
||||||
"uk",
|
|
||||||
"vi",
|
|
||||||
"vls",
|
|
||||||
"zh_Hans",
|
|
||||||
"zh_Hant",
|
|
||||||
];
|
|
||||||
|
|
||||||
// cpx includes globbed parts of the filename in the destination, but excludes
|
// cpx includes globbed parts of the filename in the destination, but excludes
|
||||||
// common parents. Hence, "res/{a,b}/**": the output will be "dest/a/..." and
|
// common parents. Hence, "res/{a,b}/**": the output will be "dest/a/..." and
|
||||||
// "dest/b/...".
|
// "dest/b/...".
|
||||||
const COPY_LIST = [
|
const COPY_LIST: [
|
||||||
|
sourceGlob: string,
|
||||||
|
outputPath: string,
|
||||||
|
opts?: {
|
||||||
|
directwatch?: 1;
|
||||||
|
},
|
||||||
|
][] = [
|
||||||
["res/apple-app-site-association", "webapp"],
|
["res/apple-app-site-association", "webapp"],
|
||||||
["res/manifest.json", "webapp"],
|
["res/manifest.json", "webapp"],
|
||||||
["res/sw.js", "webapp"],
|
["res/sw.js", "webapp"],
|
||||||
|
@ -74,18 +39,12 @@ const COPY_LIST = [
|
||||||
["./config.json", "webapp", { directwatch: 1 }],
|
["./config.json", "webapp", { directwatch: 1 }],
|
||||||
["contribute.json", "webapp"],
|
["contribute.json", "webapp"],
|
||||||
];
|
];
|
||||||
|
|
||||||
const parseArgs = require("minimist");
|
|
||||||
const Cpx = require("cpx");
|
|
||||||
const chokidar = require("chokidar");
|
|
||||||
const fs = require("fs");
|
|
||||||
|
|
||||||
const argv = parseArgs(process.argv.slice(2), {});
|
const argv = parseArgs(process.argv.slice(2), {});
|
||||||
|
|
||||||
const watch = argv.w;
|
const watch = argv.w;
|
||||||
const verbose = argv.v;
|
const verbose = argv.v;
|
||||||
|
|
||||||
function errCheck(err) {
|
function errCheck(err?: Error): void {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.error(err.message);
|
console.error(err.message);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
|
@ -101,7 +60,7 @@ if (!fs.existsSync("webapp/i18n/")) {
|
||||||
fs.mkdirSync("webapp/i18n/");
|
fs.mkdirSync("webapp/i18n/");
|
||||||
}
|
}
|
||||||
|
|
||||||
function next(i, err) {
|
function next(i: number, err?: Error): void {
|
||||||
errCheck(err);
|
errCheck(err);
|
||||||
|
|
||||||
if (i >= COPY_LIST.length) {
|
if (i >= COPY_LIST.length) {
|
||||||
|
@ -112,13 +71,9 @@ function next(i, err) {
|
||||||
const source = ent[0];
|
const source = ent[0];
|
||||||
const dest = ent[1];
|
const dest = ent[1];
|
||||||
const opts = ent[2] || {};
|
const opts = ent[2] || {};
|
||||||
let cpx = undefined;
|
const cpx = new Cpx(source, dest);
|
||||||
|
|
||||||
if (!opts.lang) {
|
if (verbose) {
|
||||||
cpx = new Cpx.Cpx(source, dest);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (verbose && cpx) {
|
|
||||||
cpx.on("copy", (event) => {
|
cpx.on("copy", (event) => {
|
||||||
console.log(`Copied: ${event.srcPath} --> ${event.dstPath}`);
|
console.log(`Copied: ${event.srcPath} --> ${event.dstPath}`);
|
||||||
});
|
});
|
||||||
|
@ -127,7 +82,7 @@ function next(i, err) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const cb = (err) => {
|
const cb = (err?: Error): void => {
|
||||||
next(i + 1, err);
|
next(i + 1, err);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -137,7 +92,7 @@ function next(i, err) {
|
||||||
// which in the case of config.json is '.', which inevitably takes
|
// which in the case of config.json is '.', which inevitably takes
|
||||||
// ages to crawl. So we create our own watcher on the files
|
// ages to crawl. So we create our own watcher on the files
|
||||||
// instead.
|
// instead.
|
||||||
const copy = () => {
|
const copy = (): void => {
|
||||||
cpx.copy(errCheck);
|
cpx.copy(errCheck);
|
||||||
};
|
};
|
||||||
chokidar.watch(source).on("add", copy).on("change", copy).on("ready", cb).on("error", errCheck);
|
chokidar.watch(source).on("add", copy).on("change", copy).on("ready", cb).on("error", errCheck);
|
||||||
|
@ -151,15 +106,15 @@ function next(i, err) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function genLangFile(lang, dest) {
|
function genLangFile(lang: string, dest: string): string {
|
||||||
const reactSdkFile = "node_modules/matrix-react-sdk/src/i18n/strings/" + lang + ".json";
|
const reactSdkFile = REACT_I18N_BASE_PATH + lang + ".json";
|
||||||
const riotWebFile = "src/i18n/strings/" + lang + ".json";
|
const riotWebFile = I18N_BASE_PATH + lang + ".json";
|
||||||
|
|
||||||
const translations = {};
|
let translations: 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;
|
||||||
|
@ -169,7 +124,7 @@ function genLangFile(lang, dest) {
|
||||||
|
|
||||||
const json = JSON.stringify(translations, null, 4);
|
const json = JSON.stringify(translations, null, 4);
|
||||||
const jsonBuffer = Buffer.from(json);
|
const jsonBuffer = Buffer.from(json);
|
||||||
const digest = loaderUtils.getHashDigest(jsonBuffer, null, null, 7);
|
const digest = loaderUtils.getHashDigest(jsonBuffer, null, "hex", 7);
|
||||||
const filename = `${lang}.${digest}.json`;
|
const filename = `${lang}.${digest}.json`;
|
||||||
|
|
||||||
fs.writeFileSync(dest + filename, json);
|
fs.writeFileSync(dest + filename, json);
|
||||||
|
@ -180,8 +135,8 @@ function genLangFile(lang, dest) {
|
||||||
return filename;
|
return filename;
|
||||||
}
|
}
|
||||||
|
|
||||||
function genLangList(langFileMap) {
|
function genLangList(langFileMap: Record<string, string>): void {
|
||||||
const languages = {};
|
const languages: Record<string, string> = {};
|
||||||
INCLUDE_LANGS.forEach(function (lang) {
|
INCLUDE_LANGS.forEach(function (lang) {
|
||||||
const normalizedLanguage = lang.toLowerCase().replace("_", "-");
|
const normalizedLanguage = lang.toLowerCase().replace("_", "-");
|
||||||
const languageParts = normalizedLanguage.split("-");
|
const languageParts = normalizedLanguage.split("-");
|
||||||
|
@ -193,7 +148,7 @@ function genLangList(langFileMap) {
|
||||||
});
|
});
|
||||||
fs.writeFile("webapp/i18n/languages.json", JSON.stringify(languages, null, 4), function (err) {
|
fs.writeFile("webapp/i18n/languages.json", JSON.stringify(languages, null, 4), function (err) {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.error("Copy Error occured: " + err);
|
console.error("Copy Error occured: " + err.message);
|
||||||
throw new Error("Failed to generate languages.json");
|
throw new Error("Failed to generate languages.json");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -207,15 +162,15 @@ function genLangList(langFileMap) {
|
||||||
* regenerate the file, adding its content-hashed filename to langFileMap
|
* regenerate the file, adding its content-hashed filename to langFileMap
|
||||||
* and regenerating languages.json with the new filename
|
* and regenerating languages.json with the new filename
|
||||||
*/
|
*/
|
||||||
function watchLanguage(lang, dest, langFileMap) {
|
function watchLanguage(lang: string, dest: string, langFileMap: Record<string, string>): void {
|
||||||
const reactSdkFile = "node_modules/matrix-react-sdk/src/i18n/strings/" + lang + ".json";
|
const reactSdkFile = REACT_I18N_BASE_PATH + lang + ".json";
|
||||||
const riotWebFile = "src/i18n/strings/" + lang + ".json";
|
const riotWebFile = I18N_BASE_PATH + lang + ".json";
|
||||||
|
|
||||||
// XXX: Use a debounce because for some reason if we read the language
|
// XXX: Use a debounce because for some reason if we read the language
|
||||||
// file immediately after the FS event is received, the file contents
|
// file immediately after the FS event is received, the file contents
|
||||||
// appears empty. Possibly https://github.com/nodejs/node/issues/6112
|
// appears empty. Possibly https://github.com/nodejs/node/issues/6112
|
||||||
let makeLangDebouncer;
|
let makeLangDebouncer: ReturnType<typeof setTimeout>;
|
||||||
const makeLang = () => {
|
const makeLang = (): void => {
|
||||||
if (makeLangDebouncer) {
|
if (makeLangDebouncer) {
|
||||||
clearTimeout(makeLangDebouncer);
|
clearTimeout(makeLangDebouncer);
|
||||||
}
|
}
|
||||||
|
@ -233,7 +188,7 @@ function watchLanguage(lang, dest, langFileMap) {
|
||||||
|
|
||||||
// language resources
|
// language resources
|
||||||
const I18N_DEST = "webapp/i18n/";
|
const I18N_DEST = "webapp/i18n/";
|
||||||
const I18N_FILENAME_MAP = INCLUDE_LANGS.reduce((m, l) => {
|
const I18N_FILENAME_MAP = INCLUDE_LANGS.reduce<Record<string, string>>((m, l) => {
|
||||||
const filename = genLangFile(l, I18N_DEST);
|
const filename = genLangFile(l, I18N_DEST);
|
||||||
m[l] = filename;
|
m[l] = filename;
|
||||||
return m;
|
return m;
|
||||||
|
@ -241,7 +196,7 @@ const I18N_FILENAME_MAP = INCLUDE_LANGS.reduce((m, l) => {
|
||||||
genLangList(I18N_FILENAME_MAP);
|
genLangList(I18N_FILENAME_MAP);
|
||||||
|
|
||||||
if (watch) {
|
if (watch) {
|
||||||
INCLUDE_LANGS.forEach((l) => watchLanguage(l.value, I18N_DEST, I18N_FILENAME_MAP));
|
INCLUDE_LANGS.forEach((l) => watchLanguage(l, I18N_DEST, I18N_FILENAME_MAP));
|
||||||
}
|
}
|
||||||
|
|
||||||
// non-language resources
|
// non-language resources
|
43
src/@types/cpx.d.ts
vendored
Normal file
43
src/@types/cpx.d.ts
vendored
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
/*
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare module "cpx" {
|
||||||
|
export class Cpx {
|
||||||
|
public constructor(source: string, outDir: string, options?: object);
|
||||||
|
|
||||||
|
public on(eventName: "copy", fn: (event: { srcPath: string; dstPath: string }) => void): void;
|
||||||
|
public on(eventName: "remove", fn: (event: { path: string }) => void): void;
|
||||||
|
public on(eventName: "watch-ready", fn: () => void): void;
|
||||||
|
public on(eventName: "watch-error", fn: (error: Error) => void): void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copy all files that matches `this.source` pattern to `this.outDir`.
|
||||||
|
*
|
||||||
|
* @param {function} [cb = null] - A callback function.
|
||||||
|
* @returns {void}
|
||||||
|
*/
|
||||||
|
public copy(cb: Function | null): void;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Copy all files that matches `this.source` pattern to `this.outDir`.
|
||||||
|
* And watch changes in `this.base`, and copy only the file every time.
|
||||||
|
*
|
||||||
|
* @returns {void}
|
||||||
|
* @throws {Error} This had been watching already.
|
||||||
|
*/
|
||||||
|
public watch(): void;
|
||||||
|
}
|
||||||
|
}
|
28
src/@types/loader-utils.d.ts
vendored
Normal file
28
src/@types/loader-utils.d.ts
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
/*
|
||||||
|
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 * as LoaderUtils from "loader-utils";
|
||||||
|
|
||||||
|
declare module "loader-utils" {
|
||||||
|
export function getHashDigest(
|
||||||
|
buffer: Buffer,
|
||||||
|
hashType: null,
|
||||||
|
digestType: LoaderUtils.DigestType,
|
||||||
|
maxLength: number,
|
||||||
|
): string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export as namespace Cpx;
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "أهمِل",
|
|
||||||
"Unknown device": "جهاز مجهول",
|
|
||||||
"Welcome to Element": "مرحبًا بك في Element",
|
|
||||||
"Create Account": "أنشِئ حسابًا",
|
|
||||||
"Explore rooms": "استكشِف الغرف",
|
|
||||||
"Sign In": "لِج",
|
|
||||||
"Invalid configuration: no default server specified.": "الضبط غير صالح: لم تحدّد خادومًا مبدئيًا.",
|
|
||||||
"Your Element is misconfigured": "لم يُضبط تطبيق Element كما ينبغي",
|
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "يحتوي ضبط تطبيق Element على تنسيق JSON غير صالح. من فضلك صحّح المشكلة وأعِد تحميل الصفحة.",
|
|
||||||
"The message from the parser is: %(message)s": "الرسالة القادمة من المحلّل: %(message)s",
|
|
||||||
"Invalid JSON": "تنسيق JSON غير صالح",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "تعذّر تحميل ملف الضبط: من فضلك أنعِش الصفحة لمعاودة المحاولة.",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "حدث عُطل غير متوقع أثناء تجهيز التطبيق. طالِع المِعراض للتفاصيل.",
|
|
||||||
"Download Completed": "اكتمل التنزيل",
|
|
||||||
"Open": "افتح",
|
|
||||||
"Go to your browser to complete Sign In": "افتح المتصفح لإكمال الولوج",
|
|
||||||
"Unsupported browser": "متصفح غير مدعوم",
|
|
||||||
"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 ميزات متقدمة في المتصفحات لا يدعمها متصفحك الحالي.",
|
|
||||||
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "من فضلك ثبّت <chromeLink>كروم</chromeLink> أو <firefoxLink>فَيَرفُكس</firefoxLink> أو <safariLink>سفاري</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.": "يمكنك مواصل استعمال متصفحك الحالي ولكن قد لا تعمل بعض المزايا (أو كلها) وقد لا يظهر التطبيق كما ينبغي له أن يظهر.",
|
|
||||||
"I understand the risks and wish to continue": "أفهم المخاطرة وأود المواصلة",
|
|
||||||
"Go to element.io": "انتقل إلى element.io",
|
|
||||||
"Failed to start": "فشل البدء",
|
|
||||||
"Powered by Matrix": "تدعمه «ماترِكس»",
|
|
||||||
"Use %(brand)s on mobile": "استعمل %(brand)s على المحمول",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "محادثة لامركزية، مشفرة & تعمل بواسطة $matrixLogo",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s في %(osName)s",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s سطح المكتب %(platformName)s"
|
|
||||||
}
|
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "Naməlum qurğu",
|
|
||||||
"Invalid JSON": "Yanlış JSON",
|
|
||||||
"Sign In": "Daxil ol",
|
|
||||||
"Create Account": "Hesab Aç",
|
|
||||||
"Explore rooms": "Otaqları kəşf edin",
|
|
||||||
"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.",
|
|
||||||
"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",
|
|
||||||
"Dismiss": "Nəzərə almayın",
|
|
||||||
"Welcome to Element": "Element-ə xoş gəlmişsiniz",
|
|
||||||
"Decentralised, encrypted chat & 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 & əməkdaşlıq",
|
|
||||||
"Failed to start": "Başlatmaq alınmadı",
|
|
||||||
"Go to element.io": "element.io saytına keçin",
|
|
||||||
"I understand the risks and wish to continue": "Mən riskləri başa düşürəm və davam etmək istəyirəm",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"%(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",
|
|
||||||
"Unsupported browser": "Dəstəklənməyən brauzer",
|
|
||||||
"Use %(brand)s on mobile": "Mobil telefonda %(brand)s istifadə edin",
|
|
||||||
"Powered by Matrix": "Gücünü Matrix'dən alır",
|
|
||||||
"Go to your browser to complete Sign In": "Girişi tamamlamaq üçün brauzerinizə keçin",
|
|
||||||
"Open": "Aç",
|
|
||||||
"Download Completed": "Yükləmə Tamamlandı",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"Your Element is misconfigured": "Elementi yanlış konfiqurasiya edibsiniz"
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "Aдхіліць"
|
|
||||||
}
|
|
|
@ -1,31 +1,38 @@
|
||||||
{
|
{
|
||||||
"Unknown device": "Непознато устройство",
|
"action": {
|
||||||
"Dismiss": "Затвори",
|
"create_account": "Създай профил",
|
||||||
"Welcome to Element": "Добре дошли в Element",
|
"dismiss": "Затвори",
|
||||||
"Sign In": "Вписване",
|
"explore_rooms": "Открий стаи",
|
||||||
"Create Account": "Създай профил",
|
"open": "Отвори",
|
||||||
"Explore rooms": "Открий стаи",
|
"sign_in": "Вписване"
|
||||||
"Unexpected error preparing the app. See console for details.": "Неочаквана грешка при подготвянето на приложението. Вижте конзолата за подробности.",
|
},
|
||||||
"Invalid configuration: no default server specified.": "Невалидна конфигурация: не е указан сървър по подразбиране.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "Грешката от парсъра е: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Отидете в браузъра за да завършите влизането"
|
||||||
"Invalid JSON": "Невалиден JSON",
|
},
|
||||||
"Go to your browser to complete Sign In": "Отидете в браузъра за да завършите влизането",
|
"download_completed": "Свалянето завърши",
|
||||||
"Unable to load config file: please refresh the page to try again.": "Неуспешно зареждане на конфигурационния файл: презаредете страницата за да опитате пак.",
|
"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_no_server": "Невалидна конфигурация: не е указан сървър по подразбиране.",
|
||||||
"I understand the risks and wish to continue": "Разбирам рисковете и желая да продължа",
|
"invalid_json": "Вашата Element конфигурация съдържа невалиден JSON. Коригирайте проблема и презаредете страницата.",
|
||||||
"Go to element.io": "Отиди на element.io",
|
"invalid_json_detail": "Грешката от парсъра е: %(message)s",
|
||||||
"Failed to start": "Неуспешно стартиране",
|
"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. Коригирайте проблема и презаредете страницата.",
|
},
|
||||||
"Download Completed": "Свалянето завърши",
|
"failed_to_start": "Неуспешно стартиране",
|
||||||
"Open": "Отвори",
|
"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> за най-добра работа.",
|
||||||
"Powered by Matrix": "Базирано на Matrix",
|
"continue_warning": "Разбирам рисковете и желая да продължа",
|
||||||
"Use %(brand)s on mobile": "Използвайте %(brand)s на мобилен телефон",
|
"feature_warning": "Може да продължите да използвате сегашния си браузър, но някои или всички функции може да се окажат неработещи, или пък външния вид на приложението да изглежда неправилен.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Децентрализиран, криптиран чат & сътрудничество, захранено от $matrixlogo",
|
"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 Desktop: %(platformName)s"
|
"title": "Неподдържан браузър"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "সরাও",
|
|
||||||
"Open": "খোলা"
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
|
@ -1,4 +0,0 @@
|
||||||
{
|
|
||||||
"Your Element is misconfigured": "আপনার এলিমেন্ট টি ভুল ভাবে কনফিগার করা হয়েছে",
|
|
||||||
"Invalid configuration: no default server specified.": "ভুল কনফিগারেশনঃ কোনো মূল সার্ভার উল্লেখ করা হয়নি।"
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"Open": "Digeriñ"
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"Invalid configuration: no default server specified.": "Neispravna konfiguracija: nije naveden zadani server.",
|
|
||||||
"Your Element is misconfigured": "Vaš element je pogrešno konfiguriran",
|
|
||||||
"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.",
|
|
||||||
"The message from the parser is: %(message)s": "Poruka parsera je: %(message)s",
|
|
||||||
"Invalid JSON": "Nevažeći JSON",
|
|
||||||
"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.",
|
|
||||||
"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",
|
|
||||||
"Open": "Otvori",
|
|
||||||
"Dismiss": "Odbaci",
|
|
||||||
"Go to your browser to complete Sign In": "Idite na svoj pretraživač da biste dovršili prijavu",
|
|
||||||
"Unknown device": "Nepoznat uređaj",
|
|
||||||
"Powered by Matrix": "Pokretano uz Matrix",
|
|
||||||
"Unsupported browser": "Nepodržani pretraživač",
|
|
||||||
"Your browser can't run %(brand)s": "Vaš pretraživač ne može pokretati %(brand)s",
|
|
||||||
"%(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.",
|
|
||||||
"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.",
|
|
||||||
"I understand the risks and wish to continue": "Razumijem rizike i želim nastaviti",
|
|
||||||
"Go to element.io": "Idite na element.io",
|
|
||||||
"Failed to start": "Pokretanje nije uspjelo",
|
|
||||||
"Welcome to Element": "Dobrodošli u Element",
|
|
||||||
"Sign In": "Prijavite se",
|
|
||||||
"Create Account": "Otvori račun",
|
|
||||||
"Explore rooms": "Istražite sobe",
|
|
||||||
"Use %(brand)s on mobile": "Koristi %(brand)s na mobitelu"
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "Omet",
|
|
||||||
"Unknown device": "Dispositiu desconegut",
|
|
||||||
"Welcome to Element": "Benvingut/da a Element",
|
|
||||||
"Create Account": "Crea un compte",
|
|
||||||
"Explore rooms": "Explora sales",
|
|
||||||
"Sign In": "Inicia sessió",
|
|
||||||
"Invalid configuration: no default server specified.": "Configuració invàlida: no s'ha especificat cap servidor predeterminat.",
|
|
||||||
"Invalid JSON": "JSON invàlid",
|
|
||||||
"Go to your browser to complete Sign In": "Vés al navegador per completar l'inici de sessió",
|
|
||||||
"Your Element is misconfigured": "Element està mal configurat",
|
|
||||||
"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.",
|
|
||||||
"The message from the parser is: %(message)s": "El missatge de l'analitzador és: %(message)s",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"Download Completed": "Baixada completada",
|
|
||||||
"Open": "Obre",
|
|
||||||
"Powered by Matrix": "Amb tecnologia de Matrix",
|
|
||||||
"Unsupported browser": "Navegador no compatible",
|
|
||||||
"Your browser can't run %(brand)s": "El teu navegador no pot executar %(brand)s",
|
|
||||||
"%(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.",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"I understand the risks and wish to continue": "Entenc els riscos i vull continuar",
|
|
||||||
"Go to element.io": "Vés a element.io",
|
|
||||||
"Failed to start": "Ha fallat l'inici",
|
|
||||||
"Use %(brand)s on mobile": "Utilitza %(brand)s al mòbil"
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
|
@ -1,32 +1,39 @@
|
||||||
{
|
{
|
||||||
"Welcome to Element": "Vítá vás Element",
|
"action": {
|
||||||
"Unknown device": "Neznámé zařízení",
|
"create_account": "Vytvořit účet",
|
||||||
"Dismiss": "Zavřít",
|
"dismiss": "Zavřít",
|
||||||
"Sign In": "Přihlásit se",
|
"explore_rooms": "Procházet místnosti",
|
||||||
"Create Account": "Vytvořit účet",
|
"open": "Otevřít",
|
||||||
"Explore rooms": "Procházet místnosti",
|
"sign_in": "Přihlásit se"
|
||||||
"The message from the parser is: %(message)s": "Zpráva z parseru je: %(message)s",
|
},
|
||||||
"Invalid JSON": "Neplatný JSON",
|
"auth": {
|
||||||
"Unexpected error preparing the app. See console for details.": "Neočekávaná chyba při přípravě aplikace. Podrobnosti najdete v konzoli.",
|
"sso_complete_in_browser_dialog_title": "Přejděte do prohlížeče a dokončete přihlášení"
|
||||||
"Invalid configuration: no default server specified.": "Neplatná konfigurace: není zadán výchozí server.",
|
},
|
||||||
"Go to your browser to complete Sign In": "Přejděte do prohlížeče a dokončete přihlášení",
|
"download_completed": "Stahování dokončeno",
|
||||||
"Your Element is misconfigured": "Váš Element je nesprávně nastaven",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Neočekávaná chyba při přípravě aplikace. Podrobnosti najdete v konzoli.",
|
||||||
"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.",
|
"cannot_load_config": "Nepodařilo se načíst konfigurační soubor: abyste to zkusili znovu, načtěte prosím znovu stránku.",
|
||||||
"Download Completed": "Stahování dokončeno",
|
"invalid_configuration_mixed_server": "Neplatná konfigurace: default_hs_url nelze použít spolu s default_server_name nebo default_server_config",
|
||||||
"Open": "Otevřít",
|
"invalid_configuration_no_server": "Neplatná konfigurace: není zadán výchozí server.",
|
||||||
"Unsupported browser": "Nepodporovaný prohlížeč",
|
"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.",
|
||||||
"Your browser can't run %(brand)s": "Váš prohlížeč nedokáže spustit %(brand)s",
|
"invalid_json_detail": "Zpráva z parseru je: %(message)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.",
|
"invalid_json_generic": "Neplatný JSON",
|
||||||
"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>.",
|
"misconfigured": "Váš Element je nesprávně nastaven"
|
||||||
"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é.",
|
},
|
||||||
"I understand the risks and wish to continue": "Rozumím a přesto chci pokračovat",
|
"failed_to_start": "Nepovedlo se nastartovat",
|
||||||
"Go to element.io": "Přejít na element.io",
|
"go_to_element_io": "Přejít na element.io",
|
||||||
"Failed to start": "Nepovedlo se nastartovat",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Běží na Matrixu",
|
"browser_links": "Pro nejlepší zážitek si prosím nainstalujte prohlížeč <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, nebo <safariLink>Safari</safariLink>.",
|
||||||
"Use %(brand)s on mobile": "Používání %(brand)s v mobilních zařízeních",
|
"continue_warning": "Rozumím a přesto chci pokračovat",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Decentralizovaný, šifrovaný chat a spolupráce na platformě $matrixLogo",
|
"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é.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s na %(osName)s",
|
"features": "%(brand)s využívá pokročilých funkcí prohlížeče, které ten váš nepodporuje.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s",
|
"summary": "Váš prohlížeč nedokáže spustit %(brand)s",
|
||||||
"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"
|
"title": "Nepodporovaný prohlížeč"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Běží na Matrixu",
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"The message from the parser is: %(message)s": "Y neges gan y dosrannudd yn: %(message)s",
|
|
||||||
"Invalid JSON": "JSON annilys",
|
|
||||||
"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.",
|
|
||||||
"Unknown device": "Dyfais anhysbys",
|
|
||||||
"Dismiss": "Wfftio",
|
|
||||||
"Welcome to Element": "Croeso i Element",
|
|
||||||
"Sign In": "Mewngofnodi",
|
|
||||||
"Create Account": "Creu Cyfrif",
|
|
||||||
"Explore rooms": "Archwilio Ystafelloedd",
|
|
||||||
"Go to your browser to complete Sign In": "Ewch i'ch porwr i gwblhau Mewngofnodi"
|
|
||||||
}
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "Afvis",
|
|
||||||
"Unknown device": "Ukendt enhed",
|
|
||||||
"Welcome to Element": "Velkommen til Element",
|
|
||||||
"The message from the parser is: %(message)s": "Beskeden fra parseren er: %(message)s",
|
|
||||||
"Invalid JSON": "Ugyldig JSON",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "Uventet fejl ved forberedelse af appen. Se konsollen for detaljer.",
|
|
||||||
"Invalid configuration: no default server specified.": "Ugyldig konfiguration: Ingen standardserver er angivet.",
|
|
||||||
"Sign In": "Log ind",
|
|
||||||
"Create Account": "Opret brugerkonto",
|
|
||||||
"Explore rooms": "Udforsk rum",
|
|
||||||
"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.",
|
|
||||||
"Go to your browser to complete Sign In": "Gå til din browser for at færdiggøre Log ind",
|
|
||||||
"Go to element.io": "Gå til element.io",
|
|
||||||
"I understand the risks and wish to continue": "Jeg forstår risikoen og ønsker at fortsætte",
|
|
||||||
"Unsupported browser": "Browser ikke understøttet",
|
|
||||||
"Open": "Åbn",
|
|
||||||
"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.",
|
|
||||||
"Your Element is misconfigured": "Dit Element er konfigureret forkert",
|
|
||||||
"Your browser can't run %(brand)s": "Din browser kan ikke køre %(brand)s",
|
|
||||||
"Powered by Matrix": "Drevet af Matrix",
|
|
||||||
"Failed to start": "Opstart mislykkedes",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"%(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.",
|
|
||||||
"Use %(brand)s on mobile": "Brug %(brand)s på mobil",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Decentraliseret, krypteret chat & samarbejde drevet af $matrixLogo",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s på %(osName)s",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s"
|
|
||||||
}
|
|
|
@ -1,32 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Ausblenden",
|
"action": {
|
||||||
"Unknown device": "Unbekanntes Gerät",
|
"create_account": "Konto erstellen",
|
||||||
"Welcome to Element": "Willkommen bei Element",
|
"dismiss": "Ausblenden",
|
||||||
"Sign In": "Anmelden",
|
"explore_rooms": "Räume erkunden",
|
||||||
"Create Account": "Konto erstellen",
|
"open": "Öffnen",
|
||||||
"Explore rooms": "Räume erkunden",
|
"sign_in": "Anmelden"
|
||||||
"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.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "Die Nachricht des Parsers ist: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Browser öffnen, um die Anmeldung abzuschließen"
|
||||||
"Invalid JSON": "Ungültiges JSON",
|
},
|
||||||
"Go to your browser to complete Sign In": "Browser öffnen, um die Anmeldung abzuschließen",
|
"download_completed": "Herunterladen fertiggestellt",
|
||||||
"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.",
|
"error": {
|
||||||
"Unsupported browser": "Nicht unterstützter Browser",
|
"app_launch_unexpected_error": "Unerwarteter Fehler bei der Vorbereitung der App; mehr Details in der Konsole.",
|
||||||
"Go to element.io": "Gehe zu element.io",
|
"cannot_load_config": "Konfigurationsdatei kann nicht geladen werden: Bitte aktualisiere die Seite, um es erneut zu versuchen.",
|
||||||
"Failed to start": "Start fehlgeschlagen",
|
"invalid_configuration_mixed_server": "Ungültige Konfiguration: default_hs_url kann nicht zeitgleich mit default_server_name oder default_server_config festgelegt werden",
|
||||||
"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_configuration_no_server": "Ungültige Konfiguration: Es wurde kein Standardserver angegeben.",
|
||||||
"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.",
|
"invalid_json": "Deine Element-Konfiguration enthält ungültiges JSON. Bitte korrigiere das Problem und lade die Seite neu.",
|
||||||
"I understand the risks and wish to continue": "Ich verstehe die Risiken und möchte fortfahren",
|
"invalid_json_detail": "Die Nachricht des Parsers ist: %(message)s",
|
||||||
"Your Element is misconfigured": "Dein Element ist falsch konfiguriert",
|
"invalid_json_generic": "Ungültiges JSON",
|
||||||
"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.",
|
"misconfigured": "Dein Element ist falsch konfiguriert"
|
||||||
"Download Completed": "Herunterladen fertiggestellt",
|
},
|
||||||
"Open": "Öffnen",
|
"failed_to_start": "Start fehlgeschlagen",
|
||||||
"%(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.",
|
"go_to_element_io": "Gehe zu element.io",
|
||||||
"Your browser can't run %(brand)s": "Dein Browser kann %(brand)s nicht ausführen",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Betrieben mit Matrix",
|
"browser_links": "Bitte installiere <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> oder <safariLink>Safari</safariLink> für das beste Erlebnis.",
|
||||||
"Use %(brand)s on mobile": "Verwende %(brand)s am Handy",
|
"continue_warning": "Ich verstehe die Risiken und möchte fortfahren",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Dezentralisierter, verschlüsselter Chat & Zusammenarbeit unterstützt von $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s auf %(osName)s",
|
"features": "%(brand)s verwendet erweiterte Browserfunktionen, die von deinem Browser nicht unterstützt werden.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s",
|
"summary": "Dein Browser kann %(brand)s nicht ausführen",
|
||||||
"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"
|
"title": "Nicht unterstützter Browser"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Betrieben mit Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Dezentralisierter, verschlüsselter Chat & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,29 +1,37 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Απόρριψη",
|
"action": {
|
||||||
"Unknown device": "Άγνωστη συσκευή",
|
"create_account": "Δημιουργία Λογαριασμού",
|
||||||
"Welcome to Element": "Καλώς ήλθατε στο Element",
|
"dismiss": "Απόρριψη",
|
||||||
"Sign In": "Σύνδεση",
|
"explore_rooms": "Εξερευνήστε δωμάτια",
|
||||||
"Create Account": "Δημιουργία Λογαριασμού",
|
"open": "Άνοιγμα",
|
||||||
"The message from the parser is: %(message)s": "Το μήνυμα από τον αναλυτή είναι: %(message)s",
|
"sign_in": "Σύνδεση"
|
||||||
"Invalid JSON": "Μη έγκυρο JSON",
|
},
|
||||||
"Unexpected error preparing the app. See console for details.": "Απρόοπτο σφάλμα κατά την προετοιμασία της εφαρμογής. Δείτε το τερματικό για λεπτομέρειες.",
|
"auth": {
|
||||||
"Invalid configuration: no default server specified.": "Μη έγκυρη ρύθμιση παραμέτρων: δεν έχει οριστεί προκαθορισμένος διακομιστής.",
|
"sso_complete_in_browser_dialog_title": "Μεταβείτε στο πρόγραμμα περιήγησής σας για να ολοκληρώσετε τη σύνδεση"
|
||||||
"Explore rooms": "Εξερευνήστε δωμάτια",
|
},
|
||||||
"Open": "Άνοιγμα",
|
"download_completed": "Η λήψη ολοκληρώθηκε",
|
||||||
"Go to your browser to complete Sign In": "Μεταβείτε στο πρόγραμμα περιήγησής σας για να ολοκληρώσετε τη σύνδεση",
|
"error": {
|
||||||
"Powered by Matrix": "Με την υποστήριξη του Matrix",
|
"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": "Δεν είναι δυνατή η φόρτωση του αρχείου config: ανανεώστε τη σελίδα για να δοκιμάσετε ξανά.",
|
||||||
"Your Element is misconfigured": "Το Element σας δεν εχει ρυθμιστεί σωστά",
|
"invalid_configuration_no_server": "Μη έγκυρη ρύθμιση παραμέτρων: δεν έχει οριστεί προκαθορισμένος διακομιστής.",
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Η ρύθμιση του Element περιέχει μη έγκυρο JSON. Διορθώστε το πρόβλημα και φορτώστε ξανά τη σελίδα.",
|
"invalid_json": "Η ρύθμιση του Element περιέχει μη έγκυρο JSON. Διορθώστε το πρόβλημα και φορτώστε ξανά τη σελίδα.",
|
||||||
"Unable to load config file: please refresh the page to try again.": "Δεν είναι δυνατή η φόρτωση του αρχείου config: ανανεώστε τη σελίδα για να δοκιμάσετε ξανά.",
|
"invalid_json_detail": "Το μήνυμα από τον αναλυτή είναι: %(message)s",
|
||||||
"Download Completed": "Η λήψη ολοκληρώθηκε",
|
"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": "Αποτυχία έναρξης",
|
||||||
"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.": "Μπορείτε να συνεχίσετε να χρησιμοποιείτε το τρέχον πρόγραμμα περιήγησής σας, αλλά ορισμένες ή όλες οι λειτουργίες ενδέχεται να μην λειτουργούν και η εμφάνιση και η αίσθηση της εφαρμογής ενδέχεται να είναι λανθασμένη.",
|
"go_to_element_io": "Πήγαινε στο element.io",
|
||||||
"I understand the risks and wish to continue": "Κατανοώ τους κινδύνους και επιθυμώ να συνεχίσω",
|
"incompatible_browser": {
|
||||||
"Go to element.io": "Πήγαινε στο element.io",
|
"browser_links": "Παρακαλούμε εγκαταστήστε <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ή <safariLink>Safari</safariLink> για καλύτερη εμπειρία χρήσης.",
|
||||||
"Failed to start": "Αποτυχία έναρξης",
|
"continue_warning": "Κατανοώ τους κινδύνους και επιθυμώ να συνεχίσω",
|
||||||
"Use %(brand)s on mobile": "Χρήση %(brand)s σε κινητό",
|
"feature_warning": "Μπορείτε να συνεχίσετε να χρησιμοποιείτε το τρέχον πρόγραμμα περιήγησής σας, αλλά ορισμένες ή όλες οι λειτουργίες ενδέχεται να μην λειτουργούν και η εμφάνιση και η αίσθηση της εφαρμογής ενδέχεται να είναι λανθασμένη.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Αποκεντρωμένη, κρυπτογραφημένη συνομιλία και συνεργασία χρησιμοποιώντας το $matrixLogo"
|
"features": "%(brand)s χρησιμοποιεί προηγμένες δυνατότητες προγράμματος περιήγησης που δεν υποστηρίζονται από το τρέχον πρόγραμμα περιήγησής σας.",
|
||||||
|
"summary": "Το πρόγραμμα περιήγησής σας δεν μπορεί να εκτελέσει %(brand)s",
|
||||||
|
"title": "Μη υποστηριζόμενο πρόγραμμα περιήγησης"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Με την υποστήριξη του Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Αποκεντρωμένη, κρυπτογραφημένη συνομιλία και συνεργασία χρησιμοποιώντας το $matrixLogo",
|
||||||
|
"unknown_device": "Άγνωστη συσκευή",
|
||||||
|
"use_brand_on_mobile": "Χρήση %(brand)s σε κινητό",
|
||||||
|
"welcome_to_element": "Καλώς ήλθατε στο Element"
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 & collaboration powered by $matrixLogo": "Decentralised, encrypted chat & 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 & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,5 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Dismiss",
|
"action": {
|
||||||
"Unknown device": "Unknown device",
|
"sign_in": "Sign in"
|
||||||
"Welcome to Element": "Welcome to Element",
|
}
|
||||||
"Sign In": "Sign In",
|
|
||||||
"Create Account": "Create Account",
|
|
||||||
"Explore rooms": "Explore rooms",
|
|
||||||
"The message from the parser is: %(message)s": "The message from the parser is: %(message)s",
|
|
||||||
"Invalid JSON": "Invalid JSON",
|
|
||||||
"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.",
|
|
||||||
"Failed to start": "Failed to start",
|
|
||||||
"Go to element.io": "Go to element.io",
|
|
||||||
"I understand the risks and wish to continue": "I understand the risks and wish to continue",
|
|
||||||
"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.",
|
|
||||||
"%(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.",
|
|
||||||
"Your browser can't run %(brand)s": "Your browser can't run %(brand)s",
|
|
||||||
"Unsupported browser": "Unsupported browser",
|
|
||||||
"Powered by Matrix": "Powered by Matrix",
|
|
||||||
"Go to your browser to complete Sign In": "Go to your browser to complete Sign In",
|
|
||||||
"Open": "Open",
|
|
||||||
"Download Completed": "Download Completed",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "Unable to load config file: please refresh the page to try again.",
|
|
||||||
"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.",
|
|
||||||
"Your Element is misconfigured": "Your Element is misconfigured",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Decentralised, encrypted chat & collaboration powered by $matrixLogo",
|
|
||||||
"Use %(brand)s on mobile": "Use %(brand)s on mobile",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s on %(osName)s",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Rezigni",
|
"action": {
|
||||||
"Unknown device": "Nekonata aparato",
|
"create_account": "Krei konton",
|
||||||
"Welcome to Element": "Bonvenon al Element",
|
"dismiss": "Rezigni",
|
||||||
"Sign In": "Ensaluti",
|
"explore_rooms": "Esplori ĉambrojn",
|
||||||
"Create Account": "Krei konton",
|
"open": "Malfermi",
|
||||||
"Explore rooms": "Esplori ĉambrojn",
|
"sign_in": "Ensaluti"
|
||||||
"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.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "La mesaĝo el la analizilo estas: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Iru al via retumilo por finpretigi la ensaluton"
|
||||||
"Invalid JSON": "Nevalida JSON",
|
},
|
||||||
"Go to your browser to complete Sign In": "Iru al via retumilo por finpretigi la ensaluton",
|
"desktop_default_device_name": "%(brand)s Labortablo: %(platformName)s",
|
||||||
"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.",
|
"download_completed": "Elŝuto finiĝis",
|
||||||
"Unsupported browser": "Nesubtenata retumilo",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Neatendita eraro okazis dum la preparado de la aplikaĵo. Rigardu la konzolon por detaloj.",
|
||||||
"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.",
|
"cannot_load_config": "Ne povas enlegi agordan dosieron: bonvolu reprovi per aktualigo de la paĝo.",
|
||||||
"I understand the risks and wish to continue": "Mi komprenas la riskon kaj volas pluiĝi",
|
"invalid_configuration_no_server": "Nevalida agordo: neniu implicita servilo estas specifita.",
|
||||||
"Go to element.io": "Iri al element.io",
|
"invalid_json": "Via agordaro de Elemento enhavas nevalidajn datumojn de JSON. Bonvolu korekti la problemon kaj aktualigi la paĝon.",
|
||||||
"Failed to start": "Malsukcesis starti",
|
"invalid_json_detail": "La mesaĝo el la analizilo estas: %(message)s",
|
||||||
"Download Completed": "Elŝuto finiĝis",
|
"invalid_json_generic": "Nevalida JSON",
|
||||||
"Open": "Malfermi",
|
"misconfigured": "Via Elemento estas misagordita"
|
||||||
"Your Element is misconfigured": "Via Elemento estas misagordita",
|
},
|
||||||
"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.",
|
"failed_to_start": "Malsukcesis starti",
|
||||||
"Your browser can't run %(brand)s": "Via retumilo ne povas ruli %(brand)s",
|
"go_to_element_io": "Iri al element.io",
|
||||||
"%(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.",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Povigata de Matrix",
|
"browser_links": "Bonvolu instali retumilon <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, aŭ <safariLink>Safari</safariLink>, por la plej bona sperto.",
|
||||||
"Use %(brand)s on mobile": "Uzi %(brand)s poŝtelefone",
|
"continue_warning": "Mi komprenas la riskon kaj volas pluiĝi",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Malcentralizita kaj ĉifrita babilejo; kunlaboro danke al $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s sur %(osName)s",
|
"features": "%(brand)s uzas specialajn funkciojn de retumilo, kiujn via nuna retumilo ne subtenas.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Labortablo: %(platformName)s"
|
"summary": "Via retumilo ne povas ruli %(brand)s",
|
||||||
|
"title": "Nesubtenata retumilo"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Unknown device": "Dispositivo desconocido",
|
"action": {
|
||||||
"Dismiss": "Omitir",
|
"create_account": "Crear cuenta",
|
||||||
"Welcome to Element": "Te damos la bienvenida a Element",
|
"dismiss": "Omitir",
|
||||||
"Sign In": "Iniciar sesión",
|
"explore_rooms": "Explorar salas",
|
||||||
"Create Account": "Crear cuenta",
|
"open": "Abrir",
|
||||||
"Explore rooms": "Explorar salas",
|
"sign_in": "Iniciar sesión"
|
||||||
"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.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "El mensaje del parser es: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Abre tu navegador web para completar el registro"
|
||||||
"Invalid JSON": "JSON inválido",
|
},
|
||||||
"Go to your browser to complete Sign In": "Abre tu navegador web para completar el registro",
|
"desktop_default_device_name": "%(brand)s de escritorio: %(platformName)s",
|
||||||
"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.",
|
"download_completed": "Descarga completada",
|
||||||
"Unsupported browser": "Navegador no compatible",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Error inesperado preparando la aplicación. Ver la consola para más detalles.",
|
||||||
"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.",
|
"cannot_load_config": "No se ha podido cargar el archivo de configuración. Recarga la página para intentarlo otra vez.",
|
||||||
"I understand the risks and wish to continue": "Entiendo los riesgos y quiero continuar",
|
"invalid_configuration_no_server": "Configuración errónea: no se ha especificado servidor.",
|
||||||
"Go to element.io": "Ir a element.io",
|
"invalid_json": "Tu configuración de Element contiene JSON inválido. Por favor corrígelo e inténtelo de nuevo.",
|
||||||
"Failed to start": "Fallo al iniciar",
|
"invalid_json_detail": "El mensaje del parser es: %(message)s",
|
||||||
"Your Element is misconfigured": "Tu aplicación Element está mal configurada",
|
"invalid_json_generic": "JSON inválido",
|
||||||
"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.",
|
"misconfigured": "Tu aplicación Element está mal configurada"
|
||||||
"Download Completed": "Descarga completada",
|
},
|
||||||
"Open": "Abrir",
|
"failed_to_start": "Fallo al iniciar",
|
||||||
"Your browser can't run %(brand)s": "Tu navegador no es compatible con %(brand)s",
|
"go_to_element_io": "Ir a element.io",
|
||||||
"%(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.",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Funciona con Matrix",
|
"browser_links": "Por favor, instale <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> para la mejor experiencia.",
|
||||||
"Use %(brand)s on mobile": "Usar %(brand)s en modo móvil",
|
"continue_warning": "Entiendo los riesgos y quiero continuar",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Conversaciones y colaboración descentralizadas y cifradas gracias a $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s en %(osName)s",
|
"features": "%(brand)s usa funciones avanzadas que su navegador actual no soporta.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s de escritorio: %(platformName)s"
|
"summary": "Tu navegador no es compatible con %(brand)s",
|
||||||
|
"title": "Navegador no compatible"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,32 +1,39 @@
|
||||||
{
|
{
|
||||||
"The message from the parser is: %(message)s": "Sõnum parserist on: %(message)s",
|
"action": {
|
||||||
"Invalid JSON": "Vigane JSON",
|
"create_account": "Loo konto",
|
||||||
"Unknown device": "Tundmatu seade",
|
"dismiss": "Loobu",
|
||||||
"Invalid configuration: no default server specified.": "Vigane seadistus: vaikimisi server on määramata.",
|
"explore_rooms": "Tutvu jututubadega",
|
||||||
"Unable to load config file: please refresh the page to try again.": "Seadistuste faili laadimine ei õnnestunud: uuesti proovimiseks palun laadi leht uuesti.",
|
"open": "Ava",
|
||||||
"Unexpected error preparing the app. See console for details.": "Rakenduse ettevalmistamisel tekkis ootamatu viga. Täpsema teabe leiad konsoolist.",
|
"sign_in": "Logi sisse"
|
||||||
"Go to your browser to complete Sign In": "Sisselogimiseks ava oma brauser",
|
},
|
||||||
"Dismiss": "Loobu",
|
"auth": {
|
||||||
"Explore rooms": "Tutvu jututubadega",
|
"sso_complete_in_browser_dialog_title": "Sisselogimiseks ava oma brauser"
|
||||||
"Welcome to Element": "Tere tulemast kasutama suhtlusrakendust Element",
|
},
|
||||||
"Sign In": "Logi sisse",
|
"download_completed": "Allalaadimine on lõpetatud",
|
||||||
"Create Account": "Loo konto",
|
"error": {
|
||||||
"Unsupported browser": "Sellele brauserile puudub tugi",
|
"app_launch_unexpected_error": "Rakenduse ettevalmistamisel tekkis ootamatu viga. Täpsema teabe leiad konsoolist.",
|
||||||
"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>.",
|
"cannot_load_config": "Seadistuste faili laadimine ei õnnestunud: uuesti proovimiseks palun 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_configuration_mixed_server": "Vigane seadistus: default_hs_url ei saa olla määratud koos default_server_name või default_server_config tunnustega",
|
||||||
"I understand the risks and wish to continue": "Ma mõistan riske ja soovin jätkata",
|
"invalid_configuration_no_server": "Vigane seadistus: vaikimisi server on määramata.",
|
||||||
"Go to element.io": "Mine element.io lehele",
|
"invalid_json": "Sinu Element'i seadistustes on vigased JSON-vormingus andmed. Palun paranda see viga ja laadi leht uuesti.",
|
||||||
"Failed to start": "Käivitamine ei õnnestunud",
|
"invalid_json_detail": "Sõnum parserist on: %(message)s",
|
||||||
"Download Completed": "Allalaadimine on lõpetatud",
|
"invalid_json_generic": "Vigane JSON",
|
||||||
"Open": "Ava",
|
"misconfigured": "Sinu Element on valesti seadistatud"
|
||||||
"Your Element is misconfigured": "Sinu Element on valesti seadistatud",
|
},
|
||||||
"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.",
|
"failed_to_start": "Käivitamine ei õnnestunud",
|
||||||
"Your browser can't run %(brand)s": "%(brand)s ei toimi sinu brauseris",
|
"go_to_element_io": "Mine element.io lehele",
|
||||||
"%(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.",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Põhineb Matrix'il",
|
"browser_links": "Parima kasutuskogemuse jaoks palun paigalda <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> või <safariLink>Safari</safariLink>.",
|
||||||
"Use %(brand)s on mobile": "Kasuta rakendust %(brand)s nutiseadmes",
|
"continue_warning": "Ma mõistan riske ja soovin jätkata",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Hajutatud ja krüpteeritud suhtlus- ning ühistöörakendus, mille aluseks on $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s operatsioonisüsteemis %(osName)s",
|
"features": "%(brand)s kasutab mitmeid uusi brauseri-põhiseid tehnoloogiaid, mis ei ole veel sinu veebibrauseris toetatud.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s",
|
"summary": "%(brand)s ei toimi sinu brauseris",
|
||||||
"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"
|
"title": "Sellele brauserile puudub tugi"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Põhineb Matrix'il",
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "Baztertu",
|
|
||||||
"Unknown device": "Gailu ezezaguna",
|
|
||||||
"Welcome to Element": "Ongi etorri Element mezularitzara",
|
|
||||||
"Sign In": "Hasi saioa",
|
|
||||||
"Create Account": "Sortu kontua",
|
|
||||||
"Explore rooms": "Arakatu gelak",
|
|
||||||
"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.",
|
|
||||||
"The message from the parser is: %(message)s": "Prozesatzailearen mezua hau da: %(message)s",
|
|
||||||
"Invalid JSON": "JSON baliogabea",
|
|
||||||
"Go to your browser to complete Sign In": "Joan zure nabigatzailera izena ematen bukatzeko",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "Ezin izan da konfigurazio fitxategia kargatu: Saiatu orria birkargatzen.",
|
|
||||||
"Unsupported browser": "Onartu gabeko nabigatzailea",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"I understand the risks and wish to continue": "Arriskuak ulertzen ditut eta jarraitu nahi dut",
|
|
||||||
"Go to element.io": "Joan element.io gunera",
|
|
||||||
"Failed to start": "Huts egin du abiatzean",
|
|
||||||
"Your Element is misconfigured": "Zure Element ez dago ondo konfiguratuta",
|
|
||||||
"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.",
|
|
||||||
"Download Completed": "Deskarga burututa",
|
|
||||||
"Open": "Ireki",
|
|
||||||
"Your browser can't run %(brand)s": "Zure nabigatzaileak ezin du %(brand)s exekutatu",
|
|
||||||
"%(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.",
|
|
||||||
"Powered by Matrix": "Matrixekin egina"
|
|
||||||
}
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Unknown device": "دستگاه ناشناخته",
|
"action": {
|
||||||
"Welcome to Element": "به Element خوشآمدید",
|
"create_account": "ایجاد حساب کاربری",
|
||||||
"Dismiss": "نادیده بگیر",
|
"dismiss": "نادیده بگیر",
|
||||||
"Invalid JSON": "JSON اشتباه",
|
"explore_rooms": "جستجو در اتاق ها",
|
||||||
"Go to your browser to complete Sign In": "برای تکمیل ورود به مرورگر خود بروید",
|
"open": "باز",
|
||||||
"Sign In": "ورود",
|
"sign_in": "ورود"
|
||||||
"Create Account": "ایجاد حساب کاربری",
|
},
|
||||||
"Explore rooms": "جستجو در اتاق ها",
|
"auth": {
|
||||||
"Invalid configuration: no default server specified.": "پیکربندی نامعتبر: سرور پیشفرض مشخص نشده است.",
|
"sso_complete_in_browser_dialog_title": "برای تکمیل ورود به مرورگر خود بروید"
|
||||||
"Your Element is misconfigured": "Element شما پیکربندی نشده است",
|
},
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "پیکربندی المنت شما شامل JSON نا معتبر است. لطفا مشکل را اصلاح کنید و صفحه را بارگذاری مجدد کنید.",
|
"desktop_default_device_name": "%(brand)s دسکتاپ: %(platformName)s",
|
||||||
"The message from the parser is: %(message)s": "پیام از طرف تجزیه کننده: %(message)s",
|
"download_completed": "بارگیری کامل شد",
|
||||||
"Unable to load config file: please refresh the page to try again.": "قادر به بارگذاری فایل پیکربندی نیست: لطفا برای تلاش مجدد صفحه را تازه کنید.",
|
"error": {
|
||||||
"Unexpected error preparing the app. See console for details.": "خطای غیر منتظره در آماده سازی برنامه. کنسول را برای جزئیات مشاهده کنید.",
|
"app_launch_unexpected_error": "خطای غیر منتظره در آماده سازی برنامه. کنسول را برای جزئیات مشاهده کنید.",
|
||||||
"Download Completed": "بارگیری کامل شد",
|
"cannot_load_config": "قادر به بارگذاری فایل پیکربندی نیست: لطفا برای تلاش مجدد صفحه را تازه کنید.",
|
||||||
"Open": "باز",
|
"invalid_configuration_no_server": "پیکربندی نامعتبر: سرور پیشفرض مشخص نشده است.",
|
||||||
"Unsupported browser": "مرورگر پشتبانی نمی شود",
|
"invalid_json": "پیکربندی المنت شما شامل JSON نا معتبر است. لطفا مشکل را اصلاح کنید و صفحه را بارگذاری مجدد کنید.",
|
||||||
"Your browser can't run %(brand)s": "مرورگر شما نمی تواند %(brand)s را اجرا کند",
|
"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 اشتباه",
|
||||||
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "لطفا برای تجربه بهتر <chromeLink>کروم</chromeLink>، <firefoxLink>فایرفاکس</firefoxLink>، یا <safariLink>سافاری</safariLink> را نصب کنید.",
|
"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.": "شما می توانید با مرورگر فعلی خود ادامه دهید، اما ممکن است عملکرد تمامی یا برخی از قابلیت ها با اشکال روبرو شود و نمایش برنامه صحیح نباشد.",
|
},
|
||||||
"I understand the risks and wish to continue": "از خطرات این کار آگاهم و مایلم که ادامه بدهم",
|
"failed_to_start": "خطا در شروع",
|
||||||
"Go to element.io": "برو به element.io",
|
"go_to_element_io": "برو به element.io",
|
||||||
"Failed to start": "خطا در شروع",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "راه اندازی شده با استفاده از ماتریکس",
|
"browser_links": "لطفا برای تجربه بهتر <chromeLink>کروم</chromeLink>، <firefoxLink>فایرفاکس</firefoxLink>، یا <safariLink>سافاری</safariLink> را نصب کنید.",
|
||||||
"Use %(brand)s on mobile": "از %(brand)s گوشی استفاده کنید",
|
"continue_warning": "از خطرات این کار آگاهم و مایلم که ادامه بدهم",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "همکاری چت غیرمتمرکز و رمزگذاری شده & توسعه یافته با استفاده از $matrixLogo",
|
"feature_warning": "شما می توانید با مرورگر فعلی خود ادامه دهید، اما ممکن است عملکرد تمامی یا برخی از قابلیت ها با اشکال روبرو شود و نمایش برنامه صحیح نباشد.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s: روی %(osName)s",
|
"features": "%(brand)s از ویژگی های پیشرفته مرورگر استفاده می کند که در مرورگر فعلی شما پشتیبانی نمی شوند.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s دسکتاپ: %(platformName)s"
|
"summary": "مرورگر شما نمی تواند %(brand)s را اجرا کند",
|
||||||
|
"title": "مرورگر پشتبانی نمی شود"
|
||||||
|
},
|
||||||
|
"powered_by_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 خوشآمدید"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Hylkää",
|
"action": {
|
||||||
"Unknown device": "Tuntematon laite",
|
"create_account": "Luo tili",
|
||||||
"Welcome to Element": "Tervetuloa Element-sovellukseen",
|
"dismiss": "Hylkää",
|
||||||
"Sign In": "Kirjaudu",
|
"explore_rooms": "Selaa huoneita",
|
||||||
"Create Account": "Luo tili",
|
"open": "Avaa",
|
||||||
"Explore rooms": "Selaa huoneita",
|
"sign_in": "Kirjaudu"
|
||||||
"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.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "Viesti jäsentimeltä: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Tee kirjautuminen loppuun selaimessasi"
|
||||||
"Invalid JSON": "Virheellinen JSON",
|
},
|
||||||
"Unable to load config file: please refresh the page to try again.": "Asetustiedostoa ei voi ladata. Yritä uudelleen lataamalla sivu uudelleen.",
|
"desktop_default_device_name": "%(brand)sin työpöytäversio: %(platformName)s",
|
||||||
"Go to your browser to complete Sign In": "Tee kirjautuminen loppuun selaimessasi",
|
"download_completed": "Lataus valmis",
|
||||||
"Unsupported browser": "Selainta ei tueta",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Odottamaton virhe sovellusta valmisteltaessa. Katso konsolista lisätietoja.",
|
||||||
"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.",
|
"cannot_load_config": "Asetustiedostoa ei voi ladata. Yritä uudelleen lataamalla sivu uudelleen.",
|
||||||
"I understand the risks and wish to continue": "Ymmärrän riskit ja haluan jatkaa",
|
"invalid_configuration_no_server": "Virheellinen asetus: oletuspalvelinta ei ole määritetty.",
|
||||||
"Failed to start": "Käynnistys ei onnistunut",
|
"invalid_json": "Element-asetuksesi sisältävät epäkelpoa JSONia. Korjaa ongelma ja lataa sivu uudelleen.",
|
||||||
"Download Completed": "Lataus valmis",
|
"invalid_json_detail": "Viesti jäsentimeltä: %(message)s",
|
||||||
"Open": "Avaa",
|
"invalid_json_generic": "Virheellinen JSON",
|
||||||
"Go to element.io": "Mene osoitteeseen riot.im",
|
"misconfigured": "Elementisi asetukset ovat pielessä"
|
||||||
"Your Element is misconfigured": "Elementisi asetukset ovat pielessä",
|
},
|
||||||
"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.",
|
"failed_to_start": "Käynnistys ei onnistunut",
|
||||||
"Powered by Matrix": "Moottorina Matrix",
|
"go_to_element_io": "Mene osoitteeseen riot.im",
|
||||||
"Your browser can't run %(brand)s": "%(brand)s ei toimi selaimessasi",
|
"incompatible_browser": {
|
||||||
"%(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.",
|
"browser_links": "Asenna <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> tai <safariLink>Safari</safariLink>, jotta kaikki toimii parhaiten.",
|
||||||
"Use %(brand)s on mobile": "Käytä %(brand)sia mobiilisti",
|
"continue_warning": "Ymmärrän riskit ja haluan jatkaa",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Hajautettu, salattu keskustelu & yhteistyö, taustavoimana $matrixLogo",
|
"feature_warning": "Voit käyttää edelleen nykyistä selaintasi, mutta jotkut tai kaikki ominaisuudet eivät ehkä toimi ja sovelluksen ulkoasu voi olla virheellinen.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s käyttöjärjestelmällä %(osName)s",
|
"features": "%(brand)s käyttää edistyneitä selaimen ominaisuuksia, joita nykyinen selaimesi ei tue.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)sin työpöytäversio: %(platformName)s"
|
"summary": "%(brand)s ei toimi selaimessasi",
|
||||||
|
"title": "Selainta ei tueta"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Moottorina Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Hajautettu, salattu keskustelu & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,32 +1,40 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Ignorer",
|
"action": {
|
||||||
"Unknown device": "Appareil inconnu",
|
"create_account": "Créer un compte",
|
||||||
"Welcome to Element": "Bienvenue sur Element",
|
"dismiss": "Ignorer",
|
||||||
"Sign In": "Se connecter",
|
"explore_rooms": "Parcourir les salons",
|
||||||
"Create Account": "Créer un compte",
|
"open": "Ouvrir",
|
||||||
"Explore rooms": "Parcourir les salons",
|
"sign_in": "Se connecter"
|
||||||
"Unexpected error preparing the app. See console for details.": "Une erreur inattendue est survenue pendant la préparation de l’application. Consultez la console pour avoir des détails.",
|
},
|
||||||
"Invalid configuration: no default server specified.": "Configuration invalide : aucun serveur par défaut indiqué.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "Le message de l’analyseur est : %(message)s",
|
"sso_complete_in_browser_dialog_title": "Utilisez votre navigateur pour terminer la connexion"
|
||||||
"Invalid JSON": "JSON non valide",
|
},
|
||||||
"Go to your browser to complete Sign In": "Utilisez votre navigateur pour terminer la connexion",
|
"desktop_default_device_name": "%(brand)s pour bureau : %(platformName)s",
|
||||||
"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.",
|
"download_completed": "Téléchargement terminé",
|
||||||
"Unsupported browser": "Navigateur non pris en charge",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Une erreur inattendue est survenue pendant la préparation de l’application. Consultez la console pour avoir des détails.",
|
||||||
"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 l’apparence de l’application sont incorrectes.",
|
"cannot_load_config": "Impossible de charger le fichier de configuration : rechargez la page pour réessayer.",
|
||||||
"I understand the risks and wish to continue": "Je comprends les risques et souhaite continuer",
|
"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",
|
||||||
"Go to element.io": "Aller vers element.io",
|
"invalid_configuration_no_server": "Configuration invalide : aucun serveur par défaut indiqué.",
|
||||||
"Failed to start": "Échec au démarrage",
|
"invalid_json": "La configuration de votre Element contient du JSON invalide. Veuillez corriger le problème et recharger la page.",
|
||||||
"Download Completed": "Téléchargement terminé",
|
"invalid_json_detail": "Le message de l’analyseur est : %(message)s",
|
||||||
"Open": "Ouvrir",
|
"invalid_json_generic": "JSON non valide",
|
||||||
"Your Element is misconfigured": "Votre Element est mal configuré",
|
"misconfigured": "Votre Element est mal configuré"
|
||||||
"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.",
|
},
|
||||||
"Your browser can't run %(brand)s": "Votre navigateur ne peut pas exécuter %(brand)s",
|
"failed_to_start": "Échec au démarrage",
|
||||||
"%(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.",
|
"go_to_element_io": "Aller vers element.io",
|
||||||
"Powered by Matrix": "Propulsé par Matrix",
|
"incompatible_browser": {
|
||||||
"Use %(brand)s on mobile": "Utiliser %(brand)s sur téléphone",
|
"browser_links": "Veuillez installer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> ou <safariLink>Safari</safariLink> pour une expérience optimale.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Messagerie décentralisée, chiffrée & une collaboration alimentée par $matrixLogo",
|
"continue_warning": "Je comprends les risques et souhaite continuer",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s : %(browserName)s pour %(osName)s",
|
"feature_warning": "Vous pouvez continuer à utiliser votre navigateur actuel, mais vous risquez de trouver que certaines fonctionnalités et/ou l’apparence de l’application sont incorrectes.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s pour bureau : %(platformName)s",
|
"features": "%(brand)s nécessite des fonctionnalités avancées que votre navigateur actuel ne prend pas en charge.",
|
||||||
"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"
|
"summary": "Votre navigateur ne peut pas exécuter %(brand)s",
|
||||||
|
"title": "Navigateur non pris en charge"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Propulsé par Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Messagerie décentralisée, chiffrée & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"Sign In": "Oanmelde",
|
|
||||||
"Failed to start": "Opstarten mislearre",
|
|
||||||
"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.",
|
|
||||||
"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 dy’t net stipe wurde troch de browser dy’t jo no brûke.",
|
|
||||||
"Powered by Matrix": "Mooglik makke troch Matrix",
|
|
||||||
"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",
|
|
||||||
"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.",
|
|
||||||
"Use %(brand)s on mobile": "Brûk %(brand)s op mobyl",
|
|
||||||
"Go to your browser to complete Sign In": "Gean nei jo browser om it ynskriuwen te foltôgjen",
|
|
||||||
"Download Completed": "Download foltôge",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "Kin konfiguraasjebestân net lade: ferfarskje de side en probearje it nochris.",
|
|
||||||
"Dismiss": "Slute",
|
|
||||||
"Explore rooms": "Keamers ûntdekke",
|
|
||||||
"Create Account": "Registrearje",
|
|
||||||
"Welcome to Element": "Wolkom by Element",
|
|
||||||
"I understand the risks and wish to continue": "Ik begryp de risiko's en wol graach fierder gean",
|
|
||||||
"Go to element.io": "Gean nei element.io",
|
|
||||||
"Your browser can't run %(brand)s": "Jo browser kin %(brand)s net útfiere",
|
|
||||||
"Unsupported browser": "Net stipe browser",
|
|
||||||
"Unknown device": "Unbekend apparaat",
|
|
||||||
"Open": "Iepenje",
|
|
||||||
"Invalid JSON": "Unjildige JSON",
|
|
||||||
"Your Element is misconfigured": "Jo Element is net goed konfigurearre",
|
|
||||||
"Invalid configuration: no default server specified.": "Unjildiche konfiguraasje: gjin standertserver selektearre."
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "Gléas nár aithníodh",
|
|
||||||
"Dismiss": "Cuir uait",
|
|
||||||
"Welcome to Element": "Fáilte romhat chuig Element",
|
|
||||||
"Sign In": "Sínigh Isteach",
|
|
||||||
"Create Account": "Déan cuntas a chruthú",
|
|
||||||
"Explore rooms": "Breathnaigh thart ar na seomraí",
|
|
||||||
"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ú",
|
|
||||||
"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.",
|
|
||||||
"Your Element is misconfigured": "Níl do fheidhmchlár Element cumraithe i gceart",
|
|
||||||
"Failed to start": "Theip chun tosú",
|
|
||||||
"I understand the risks and wish to continue": "Tuigim na rioscaí agus ba mhaith liom lean ar aghaidh",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"%(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.",
|
|
||||||
"Unsupported browser": "Brabhsálaí gan tacaíocht",
|
|
||||||
"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.",
|
|
||||||
"Download Completed": "Íoslódáil críochnaithe",
|
|
||||||
"Invalid JSON": "JSON neamhbhailí",
|
|
||||||
"The message from the parser is: %(message)s": "Is í an teachtaireacht as an parsálaí: %(message)s",
|
|
||||||
"Invalid configuration: no default server specified.": "Cumraíocht neamhbhailí: Níl aon freastalaí réamhshocraithe a sonrú.",
|
|
||||||
"Powered by Matrix": "Cumhachtaithe ag Matrix",
|
|
||||||
"Go to element.io": "Téigh go element.io",
|
|
||||||
"Open": "Oscail",
|
|
||||||
"Use %(brand)s on mobile": "Úsáid %(brand)s ar guthán póca"
|
|
||||||
}
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Rexeitar",
|
"action": {
|
||||||
"Unknown device": "Dispositivo descoñecido",
|
"create_account": "Crear conta",
|
||||||
"Welcome to Element": "Benvida/o a Element",
|
"dismiss": "Rexeitar",
|
||||||
"Sign In": "Acceder",
|
"explore_rooms": "Explorar salas",
|
||||||
"Create Account": "Crear conta",
|
"open": "Abrir",
|
||||||
"Explore rooms": "Explorar salas",
|
"sign_in": "Acceder"
|
||||||
"The message from the parser is: %(message)s": "A mensaxe desde o intérprete é: %(message)s",
|
},
|
||||||
"Invalid JSON": "JSON non válido",
|
"auth": {
|
||||||
"Unexpected error preparing the app. See console for details.": "Fallo non agardado ao preparar a app. Detalles na consola.",
|
"sso_complete_in_browser_dialog_title": "Abre o navegador para realizar a Conexión"
|
||||||
"Invalid configuration: no default server specified.": "Configuración non válida: non se indicou servidor por defecto.",
|
},
|
||||||
"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.",
|
"desktop_default_device_name": "%(brand)s para Escritorio: %(platformName)s",
|
||||||
"Go to your browser to complete Sign In": "Abre o navegador para realizar a Conexión",
|
"download_completed": "Descarga realizada",
|
||||||
"Unsupported browser": "Navegador non soportado",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Fallo non agardado ao preparar a app. Detalles na consola.",
|
||||||
"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.",
|
"cannot_load_config": "Non se cargou o ficheiro de configuración: actualiza a páxina para reintentalo.",
|
||||||
"I understand the risks and wish to continue": "Entendo os riscos e desexo continuar",
|
"invalid_configuration_no_server": "Configuración non válida: non se indicou servidor por defecto.",
|
||||||
"Go to element.io": "Ir a element.io",
|
"invalid_json": "A configuración de Element contén JSON non válido. Corrixe o problema e recarga a páxina.",
|
||||||
"Failed to start": "Fallou o inicio",
|
"invalid_json_detail": "A mensaxe desde o intérprete é: %(message)s",
|
||||||
"Download Completed": "Descarga realizada",
|
"invalid_json_generic": "JSON non válido",
|
||||||
"Open": "Abrir",
|
"misconfigured": "Element non está ben configurado"
|
||||||
"Your Element is misconfigured": "Element non está ben configurado",
|
},
|
||||||
"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.",
|
"failed_to_start": "Fallou o inicio",
|
||||||
"Your browser can't run %(brand)s": "O teu navegador non pode executar %(brand)s",
|
"go_to_element_io": "Ir a element.io",
|
||||||
"%(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.",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Funciona grazas a Matrix",
|
"browser_links": "Instala <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ou <safariLink>Safari</safariLink> para ter unha mellor experiencia.",
|
||||||
"Use %(brand)s on mobile": "Utiliza %(brand)s no móbil",
|
"continue_warning": "Entendo os riscos e desexo continuar",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Conversas & colaboración descentralizadas e cifradas grazas a $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s en %(osName)s",
|
"features": "%(brand)s utiliza características avanzadas do navegador que non están dispoñibles no teu navegador.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s para Escritorio: %(platformName)s"
|
"summary": "O teu navegador non pode executar %(brand)s",
|
||||||
|
"title": "Navegador non soportado"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Funciona grazas a Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Conversas & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "התעלם",
|
"action": {
|
||||||
"Unknown device": "מכשיר לא ידוע",
|
"create_account": "משתמש חדש",
|
||||||
"Welcome to Element": "ברוכים הבאים ל Element",
|
"dismiss": "התעלם",
|
||||||
"Invalid JSON": "JSON לא חוקי",
|
"explore_rooms": "גלה חדרים",
|
||||||
"Invalid configuration: no default server specified.": "תצורה שגויה: לא צוין שרת ברירת מחדל.",
|
"open": "פתח",
|
||||||
"Go to your browser to complete Sign In": "עבור לדפדפן להמשך ההתחברות",
|
"sign_in": "התחברות"
|
||||||
"Explore rooms": "גלה חדרים",
|
},
|
||||||
"Create Account": "משתמש חדש",
|
"auth": {
|
||||||
"Sign In": "התחברות",
|
"sso_complete_in_browser_dialog_title": "עבור לדפדפן להמשך ההתחברות"
|
||||||
"Open": "פתח",
|
},
|
||||||
"Download Completed": "ההורדה הושלמה",
|
"desktop_default_device_name": "%(brand)s שולחן עבודה: %(platformName)s",
|
||||||
"Unexpected error preparing the app. See console for details.": "שגיאה לא צפויה במהלך טעינת האפליקציה. ראו קונסול לפרטים נוספים.",
|
"download_completed": "ההורדה הושלמה",
|
||||||
"Unable to load config file: please refresh the page to try again.": "לא ניתן לטעון את קובץ ההגדרות: יש לרענן את הדף כדי לנסות שנית.",
|
"error": {
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "האלמנט מכיל הגדרת JSON שגויה, אנא תקנו את הבעיה ואתחלו את הדף.",
|
"app_launch_unexpected_error": "שגיאה לא צפויה במהלך טעינת האפליקציה. ראו קונסול לפרטים נוספים.",
|
||||||
"Your Element is misconfigured": "Element אינו מוגדר תקין",
|
"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>כרום</chromeLink>, <firefoxLink>פיירפוקס</firefoxLink> או <safariLink>סאפרי</safariLink> בשביל החוויה הטובה ביותר.",
|
"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": "כשל בהעלאת התוכנה",
|
||||||
"Unsupported browser": "דפדפן לא נתמך",
|
"go_to_element_io": "חזור לאתר הראשי: element.io",
|
||||||
"Powered by Matrix": "מופעל על ידי מטריקס",
|
"incompatible_browser": {
|
||||||
"The message from the parser is: %(message)s": "ההודעה מהמנתח היא: %(message)s",
|
"browser_links": "נא התקן את דפדפן <chromeLink>כרום</chromeLink>, <firefoxLink>פיירפוקס</firefoxLink> או <safariLink>סאפרי</safariLink> בשביל החוויה הטובה ביותר.",
|
||||||
"Use %(brand)s on mobile": "השתמש ב-%(brand)s במכשיר הנייד",
|
"continue_warning": "הסיכונים מובנים לי ואני מעוניינ/ת להמשיך",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "צ'אט מבוזר ומוצפן & מופעל בשיתוף פעולה ע\"י $matrixLogo",
|
"feature_warning": "ניתן להמשיך ולהשתמש בדפדפן זה, אך ייתכן שחלק מן התכונות והמאפיינים לא יעבדו כשורה או ייראו כשגויים.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s עַל %(osName)s",
|
"features": "%(brand)s משתמש בתכונות דפדפן מתקדמות שאינן נתמכות בדפדפן הנוכחי שלך.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s שולחן עבודה: %(platformName)s"
|
"summary": "הדפדפן שלך לא יכול להריץ %(brand)s",
|
||||||
|
"title": "דפדפן לא נתמך"
|
||||||
|
},
|
||||||
|
"powered_by_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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "अज्ञात यन्त्र",
|
|
||||||
"Dismiss": "खारिज",
|
|
||||||
"Welcome to Element": "Element में आपका स्वागत है",
|
|
||||||
"Sign In": "साइन करना",
|
|
||||||
"Create Account": "खाता बनाएं",
|
|
||||||
"Explore rooms": "रूम का अन्वेषण करें",
|
|
||||||
"Failed to start": "प्रारंभ करने में विफल",
|
|
||||||
"Go to element.io": "element.io पर जाएं",
|
|
||||||
"I understand the risks and wish to continue": "मैं जोखिमों को समझता हूं और जारी रखना चाहता हूं",
|
|
||||||
"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>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, या <safariLink>Safari</safariLink> इंस्टॉल करें।",
|
|
||||||
"%(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 को नहीं चला सकता",
|
|
||||||
"Use %(brand)s on mobile": "मोबाइल पर %(brand)s का प्रयोग करें",
|
|
||||||
"Unsupported browser": "असमर्थित ब्राउज़र",
|
|
||||||
"Powered by Matrix": "मैट्रिक्स द्वारा संचालित",
|
|
||||||
"Go to your browser to complete Sign In": "साइन इन पूरा करने के लिए अपने ब्राउज़र पर जाएं",
|
|
||||||
"Open": "खुला",
|
|
||||||
"Download Completed": "डाउनलोड सम्पन्न हुआ",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "ऐप्लिकेशन तैयार करने में अनपेक्षित गड़बड़ी हुई. विवरण के लिए कंसोल देखें।",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "कॉन्फ़िग फ़ाइल लोड करने में असमर्थ: कृपया पुन: प्रयास करने के लिए पृष्ठ को रीफ़्रेश करें।",
|
|
||||||
"Invalid JSON": "अमान्य JSON",
|
|
||||||
"The message from the parser is: %(message)s": "पार्सर का संदेश है: %(message)s",
|
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "आपके एलीमेंट कॉन्फ़िगरेशन में अमान्य JSON है. कृपया समस्या को ठीक करें और पृष्ठ को पुनः लोड करें।",
|
|
||||||
"Your Element is misconfigured": "आपका तत्व गलत कॉन्फ़िगर किया गया है",
|
|
||||||
"Invalid configuration: no default server specified.": "अमान्य कॉन्फ़िगरेशन: कोई डिफ़ॉल्ट सर्वर निर्दिष्ट नहीं है।"
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "Nepoznati uređaj",
|
|
||||||
"Dismiss": "Odbaci",
|
|
||||||
"Welcome to Element": "Dobrodošli u Element"
|
|
||||||
}
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Eltüntetés",
|
"action": {
|
||||||
"Unknown device": "Ismeretlen eszköz",
|
"create_account": "Fiók létrehozása",
|
||||||
"Welcome to Element": "Üdvözli az Element",
|
"dismiss": "Eltüntetés",
|
||||||
"Sign In": "Bejelentkezés",
|
"explore_rooms": "Szobák felderítése",
|
||||||
"Create Account": "Fiók létrehozása",
|
"open": "Megnyitás",
|
||||||
"Explore rooms": "Szobák felderítése",
|
"sign_in": "Bejelentkezés"
|
||||||
"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ó.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "A feldolgozó algoritmus üzenete: %(message)s",
|
"sso_complete_in_browser_dialog_title": "A böngészőben fejezze be a bejelentkezést"
|
||||||
"Invalid JSON": "Érvénytelen JSON",
|
},
|
||||||
"Go to your browser to complete Sign In": "A böngészőben fejezze be a bejelentkezést",
|
"desktop_default_device_name": "Asztali %(brand)s: (%(platformName)s)",
|
||||||
"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.",
|
"download_completed": "A letöltés befejeződött",
|
||||||
"Unsupported browser": "Nem támogatott böngésző",
|
"error": {
|
||||||
"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>.",
|
"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.",
|
||||||
"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.",
|
"cannot_load_config": "A konfigurációs fájlt nem sikerült betölteni: frissítse az oldalt és próbálja meg újra.",
|
||||||
"I understand the risks and wish to continue": "Megértettem a kockázatot és folytatom",
|
"invalid_configuration_no_server": "Érvénytelen konfiguráció: nincs megadva alapértelmezett kiszolgáló.",
|
||||||
"Go to element.io": "Irány a element.io",
|
"invalid_json": "Az Element érvénytelen JSON-t tartalmazó konfigurációval rendelkezik. Javítsa és töltse újra az oldalt.",
|
||||||
"Failed to start": "Az indítás sikertelen",
|
"invalid_json_detail": "A feldolgozó algoritmus üzenete: %(message)s",
|
||||||
"Download Completed": "A letöltés befejeződött",
|
"invalid_json_generic": "Érvénytelen JSON",
|
||||||
"Open": "Megnyitás",
|
"misconfigured": "Az Element hibásan van beállítva"
|
||||||
"Your Element is misconfigured": "Az Element hibásan van beállítva",
|
},
|
||||||
"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.",
|
"failed_to_start": "Az indítás sikertelen",
|
||||||
"Your browser can't run %(brand)s": "A böngészője nem tudja futtatni ezt: %(brand)s",
|
"go_to_element_io": "Irány a element.io",
|
||||||
"%(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.",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "A gépházban: Matrix",
|
"browser_links": "A legjobb élmény érdékében telepítsen <chromeLink>Chrome-ot</chromeLink>, <firefoxLink>Firefoxot</firefoxLink> vagy <safariLink>Safarit</safariLink>.",
|
||||||
"Use %(brand)s on mobile": "Mobilon használja ezt: %(brand)s",
|
"continue_warning": "Megértettem a kockázatot és folytatom",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Elosztott, titkosított csevegés és együttműködés ezzel: $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: (%(browserName)s itt: %(osName)s)",
|
"features": "A(z) %(brand)s speciális böngészőfunkciókat használ, amelyeket a jelenlegi böngészője nem támogat.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "Asztali %(brand)s: (%(platformName)s)"
|
"summary": "A böngészője nem tudja futtatni ezt: %(brand)s",
|
||||||
|
"title": "Nem támogatott böngésző"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
{
|
|
||||||
"Explore rooms": "Փնտրել սենյակներ",
|
|
||||||
"Failed to start": "Չի ստացվում սկսել",
|
|
||||||
"Use %(brand)s on mobile": "Օգտագործում է %(brand)s հեռախոսի վրա",
|
|
||||||
"Unknown device": "Անծանոթ սարք",
|
|
||||||
"Welcome to Element": "Բարի գալուստ Element",
|
|
||||||
"Your browser can't run %(brand)s": "Ձեր բրաուզերը չի թողարկում %(brand)s",
|
|
||||||
"Unsupported browser": "Չհամապատասխանող բրաուզեր",
|
|
||||||
"Dismiss": "Հեռացնել",
|
|
||||||
"Open": "Բացել",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "Ֆայլի ներմուծման սխալ․ խնդրում ենք թարմացնել էջը և նորից փորձել։",
|
|
||||||
"Invalid JSON": "Չաշխատող JSON",
|
|
||||||
"Your Element is misconfigured": "Ձեր Element֊ը սխալ է կարգավորված",
|
|
||||||
"Powered by Matrix": "Սնուցվում է Matrixի կողմից",
|
|
||||||
"I understand the risks and wish to continue": "Ես գնահատում եմ ռիսկերն ու ցանկանում եմ շարունակել",
|
|
||||||
"Create Account": "Ստեղծել օգտահաշիվ",
|
|
||||||
"Sign In": "Մուտք գործել",
|
|
||||||
"Go to element.io": "Այցելեք element.io",
|
|
||||||
"Go to your browser to complete Sign In": "Հետ գնացեք բրաուզեր մուտք գործելն ավարտելու համար",
|
|
||||||
"Download Completed": "Ներբեռնումն ավարտված է"
|
|
||||||
}
|
|
|
@ -1,32 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Abaikan",
|
"action": {
|
||||||
"Unknown device": "Perangkat tidak diketahui",
|
"create_account": "Buat Akun",
|
||||||
"Welcome to Element": "Selamat datang di Element",
|
"dismiss": "Abaikan",
|
||||||
"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.",
|
"explore_rooms": "Jelajahi ruangan",
|
||||||
"Invalid configuration: no default server specified.": "Konfigurasi tidak absah: server bawaan belum ditentukan.",
|
"open": "Buka",
|
||||||
"Explore rooms": "Jelajahi ruangan",
|
"sign_in": "Masuk"
|
||||||
"Create Account": "Buat Akun",
|
},
|
||||||
"Go to your browser to complete Sign In": "Buka peramban Anda untuk menyelesaikan Sign In",
|
"auth": {
|
||||||
"Sign In": "Masuk",
|
"sso_complete_in_browser_dialog_title": "Buka peramban Anda untuk menyelesaikan Sign In"
|
||||||
"Failed to start": "Gagal untuk memulai",
|
},
|
||||||
"Go to element.io": "Buka element.io",
|
"download_completed": "Unduhan Selesai",
|
||||||
"I understand the risks and wish to continue": "Saya memahami risikonya dan ingin melanjutkan",
|
"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.": "Anda dapat melanjutkan menggunakan peramban Anda saat ini, tetapi beberapa atau semua fitur mungkin tidak berfungsi dan tampilan serta nuansa aplikasi mungkin tidak benar.",
|
"app_launch_unexpected_error": "Kesalahan tak terduga saat menyiapkan aplikasi. Lihat konsol untuk detail.",
|
||||||
"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.",
|
"cannot_load_config": "Tidak dapat memuat file konfigurasi: mohon muat ulang laman ini untuk mencoba lagi.",
|
||||||
"%(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_configuration_mixed_server": "Konfigurasi tidak valid: default_hs_url tidak dapat ditentukan bersama dengan default_server_name atau default_server_config",
|
||||||
"Your browser can't run %(brand)s": "Peramban Anda tidak dapat menjalankan %(brand)s",
|
"invalid_configuration_no_server": "Konfigurasi tidak absah: server bawaan belum ditentukan.",
|
||||||
"Unsupported browser": "Peramban tidak didukung",
|
"invalid_json": "Konfigurasi Element Anda berisi JSON yang tidak absah. Mohon perbaiki masalahnya dan muat ulang laman ini.",
|
||||||
"Use %(brand)s on mobile": "Gunakan %(brand)s di ponsel",
|
"invalid_json_detail": "Pesan dari pengurai adalah: %(message)s",
|
||||||
"Powered by Matrix": "Diberdayakan oleh Matrix",
|
"invalid_json_generic": "JSON tidak absah",
|
||||||
"Open": "Buka",
|
"misconfigured": "Anda salah mengatur Element"
|
||||||
"Download Completed": "Unduhan Selesai",
|
},
|
||||||
"Unexpected error preparing the app. See console for details.": "Kesalahan tak terduga saat menyiapkan aplikasi. Lihat konsol untuk detail.",
|
"failed_to_start": "Gagal untuk memulai",
|
||||||
"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.",
|
"go_to_element_io": "Buka element.io",
|
||||||
"Invalid JSON": "JSON tidak absah",
|
"incompatible_browser": {
|
||||||
"The message from the parser is: %(message)s": "Pesan dari pengurai adalah: %(message)s",
|
"browser_links": "Silakan instal <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, atau <safariLink>Safari</safariLink> untuk pengalaman yang terbaik.",
|
||||||
"Your Element is misconfigured": "Anda salah mengatur Element",
|
"continue_warning": "Saya memahami risikonya dan ingin melanjutkan",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Obrolan & kolaborasi terdesentralisasi dan terenkripsi diberdayakan oleh $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s di %(osName)s",
|
"features": "%(brand)s menggunakan fitur peramban tingkat lanjut yang tidak didukung oleh peramban Anda saat ini.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s",
|
"summary": "Peramban Anda tidak dapat menjalankan %(brand)s",
|
||||||
"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"
|
"title": "Peramban tidak didukung"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Diberdayakan oleh Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Obrolan & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Welcome to Element": "Velkomin í Element",
|
"action": {
|
||||||
"Unknown device": "Óþekkt tæki",
|
"create_account": "Búa til notandaaðgang",
|
||||||
"Dismiss": "Hunsa",
|
"dismiss": "Hunsa",
|
||||||
"Open": "Opna",
|
"explore_rooms": "Kanna spjallrásir",
|
||||||
"Unsupported browser": "Óstuddur vafri",
|
"open": "Opna",
|
||||||
"Your browser can't run %(brand)s": "Vafrinn þinn getur ekki keyrt %(brand)s",
|
"sign_in": "Skrá inn"
|
||||||
"Sign In": "Skrá inn",
|
},
|
||||||
"Create Account": "Búa til notandaaðgang",
|
"auth": {
|
||||||
"Explore rooms": "Kanna spjallrásir",
|
"sso_complete_in_browser_dialog_title": "Farðu í vafrann þinn til að ljúka innskráningu"
|
||||||
"The message from the parser is: %(message)s": "Skilaboðið frá þáttaranum er %(message)s",
|
},
|
||||||
"Invalid JSON": "Ógilt JSON",
|
"desktop_default_device_name": "%(brand)s borðtölvuútgáfa: %(platformName)s",
|
||||||
"Download Completed": "Niðurhali lokið",
|
"download_completed": "Niðurhali lokið",
|
||||||
"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.",
|
"error": {
|
||||||
"I understand the risks and wish to continue": "Ég skil áhættuna og óska að halda áfram",
|
"app_launch_unexpected_error": "Óvænt villa við undirbúning forritsins. Sjá nánar á stjórnskjá.",
|
||||||
"Go to element.io": "Fara á element.io",
|
"cannot_load_config": "Ekki er hægt að hlaða stillingaskrána: endurnýjaðu síðuna til að reyna aftur.",
|
||||||
"Unexpected error preparing the app. See console for details.": "Óvænt villa við undirbúning forritsins. Sjá nánar á stjórnskjá.",
|
"invalid_configuration_no_server": "Ógild uppsetning: enginn sjálfgefinn vefþjónn tilgreindur.",
|
||||||
"Failed to start": "Mistókst að ræsa",
|
"invalid_json": "Element-stillingar þínar innihalda ógilt JSON. Leiðréttu vandamálið og endurlestu síðuna.",
|
||||||
"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.",
|
"invalid_json_detail": "Skilaboðið frá þáttaranum er %(message)s",
|
||||||
"%(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.",
|
"invalid_json_generic": "Ógilt JSON",
|
||||||
"Powered by Matrix": "Keyrt með Matrix",
|
"misconfigured": "Element-tilvikið þitt er rangt stillt"
|
||||||
"Go to your browser to complete Sign In": "Farðu í vafrann þinn til að ljúka innskráningu",
|
},
|
||||||
"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.",
|
"failed_to_start": "Mistókst að ræsa",
|
||||||
"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.",
|
"go_to_element_io": "Fara á element.io",
|
||||||
"Your Element is misconfigured": "Element-tilvikið þitt er rangt stillt",
|
"incompatible_browser": {
|
||||||
"Invalid configuration: no default server specified.": "Ógild uppsetning: enginn sjálfgefinn vefþjónn tilgreindur.",
|
"browser_links": "Þú ættir að setja upp <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eða <safariLink>Safari</safariLink> til að fá sem besta útkomu.",
|
||||||
"Use %(brand)s on mobile": "Nota %(brand)s í síma",
|
"continue_warning": "Ég skil áhættuna og óska að halda áfram",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Dreifstýrt, dulritað spjall og samskipti keyrt með $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s á %(osName)s",
|
"features": "%(brand)s notar háþróaða vafraeiginleika sem eru ekki studdir af vafranum þínum.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s borðtölvuútgáfa: %(platformName)s"
|
"summary": "Vafrinn þinn getur ekki keyrt %(brand)s",
|
||||||
|
"title": "Óstuddur vafri"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,32 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Chiudi",
|
"action": {
|
||||||
"Unknown device": "Dispositivo sconosciuto",
|
"create_account": "Crea account",
|
||||||
"Welcome to Element": "Benvenuti su Element",
|
"dismiss": "Chiudi",
|
||||||
"Sign In": "Accedi",
|
"explore_rooms": "Esplora stanze",
|
||||||
"Create Account": "Crea account",
|
"open": "Apri",
|
||||||
"Explore rooms": "Esplora stanze",
|
"sign_in": "Accedi"
|
||||||
"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.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "Il messaggio dal parser è: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Vai nel tuo browser per completare l'accesso"
|
||||||
"Invalid JSON": "JSON non valido",
|
},
|
||||||
"Go to your browser to complete Sign In": "Vai nel tuo browser per completare l'accesso",
|
"download_completed": "Scaricamento completato",
|
||||||
"Unable to load config file: please refresh the page to try again.": "Impossibile caricare il file di configurazione: ricarica la pagina per riprovare.",
|
"error": {
|
||||||
"Unsupported browser": "Browser non supportato",
|
"app_launch_unexpected_error": "Errore inaspettato preparando l'app. Vedi la console per i dettagli.",
|
||||||
"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.",
|
"cannot_load_config": "Impossibile caricare il file di configurazione: ricarica la pagina per riprovare.",
|
||||||
"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_configuration_mixed_server": "Configurazione non valida: default_hs_url non può essere specificato assieme a default_server_name o default_server_config",
|
||||||
"I understand the risks and wish to continue": "Capisco i rischi e desidero continuare",
|
"invalid_configuration_no_server": "Configurazione non valida: nessun server predefinito specificato.",
|
||||||
"Go to element.io": "Vai su element.io",
|
"invalid_json": "La configurazione del tuo elemento contiene un JSON non valido. Correggi il problema e ricarica la pagina.",
|
||||||
"Failed to start": "Avvio fallito",
|
"invalid_json_detail": "Il messaggio dal parser è: %(message)s",
|
||||||
"Download Completed": "Scaricamento completato",
|
"invalid_json_generic": "JSON non valido",
|
||||||
"Open": "Apri",
|
"misconfigured": "Il tuo elemento è configurato male"
|
||||||
"Your Element is misconfigured": "Il tuo elemento è configurato male",
|
},
|
||||||
"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.",
|
"failed_to_start": "Avvio fallito",
|
||||||
"Your browser can't run %(brand)s": "Il tuo browser non può eseguire %(brand)s",
|
"go_to_element_io": "Vai su element.io",
|
||||||
"%(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.",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Offerto da Matrix",
|
"browser_links": "Installa <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, o <safariLink>Safari</safariLink> per una migliore esperienza.",
|
||||||
"Use %(brand)s on mobile": "Usa %(brand)s su mobile",
|
"continue_warning": "Capisco i rischi e desidero continuare",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Chat e collaborazioni criptate e decentralizzate offerte da $matrixLogo",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s su %(osName)s",
|
"features": "%(brand)s usa funzionalità avanzate del browser che non sono supportate dal tuo browser attuale.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s",
|
"summary": "Il tuo browser non può eseguire %(brand)s",
|
||||||
"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"
|
"title": "Browser non supportato"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Offerto da Matrix",
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +1,38 @@
|
||||||
{
|
{
|
||||||
"Welcome to Element": "Elementにようこそ",
|
"action": {
|
||||||
"Unknown device": "不明な端末",
|
"create_account": "アカウントを作成",
|
||||||
"Dismiss": "閉じる",
|
"dismiss": "閉じる",
|
||||||
"Unexpected error preparing the app. See console for details.": "アプリケーションの準備中に予期しないエラーが発生しました。詳細はコンソールを参照してください。",
|
"explore_rooms": "ルームを探す",
|
||||||
"Invalid configuration: no default server specified.": "不正な設定:デフォルトのサーバーが設定されていません。",
|
"open": "開く",
|
||||||
"Sign In": "サインイン",
|
"sign_in": "サインイン"
|
||||||
"Create Account": "アカウントを作成",
|
},
|
||||||
"Explore rooms": "ルームを探す",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "パーサーのメッセージ:%(message)s",
|
"sso_complete_in_browser_dialog_title": "ブラウザーに移動してサインインを完了してください"
|
||||||
"Invalid JSON": "不正な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>をインストールしてください。",
|
"desktop_default_device_name": "%(brand)sデスクトップ:%(platformName)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.": "現在のブラウザーを使い続けることもできますが、いくつか(もしくは全ての)機能が動作しなかったり、外観が崩れたりする可能性があります。",
|
"download_completed": "ダウンロードが完了しました",
|
||||||
"I understand the risks and wish to continue": "リスクを理解して続行",
|
"error": {
|
||||||
"Unable to load config file: please refresh the page to try again.": "設定ファイルの読み込みに失敗しました:ページを再読み込みして、もう一度やり直してください。",
|
"app_launch_unexpected_error": "アプリケーションの準備中に予期しないエラーが発生しました。詳細はコンソールを参照してください。",
|
||||||
"Download Completed": "ダウンロードが完了しました",
|
"cannot_load_config": "設定ファイルの読み込みに失敗しました:ページを再読み込みして、もう一度やり直してください。",
|
||||||
"Open": "開く",
|
"invalid_configuration_no_server": "不正な設定:デフォルトのサーバーが設定されていません。",
|
||||||
"Go to your browser to complete Sign In": "ブラウザーに移動してサインインを完了してください",
|
"invalid_json": "Elementの設定ファイルに不正なJSONが含まれています。問題を修正してからページを再読み込みしてください。",
|
||||||
"Unsupported browser": "サポートされていないブラウザー",
|
"invalid_json_detail": "パーサーのメッセージ:%(message)s",
|
||||||
"Go to element.io": "element.ioへ移動",
|
"invalid_json_generic": "不正なJSON",
|
||||||
"Failed to start": "起動に失敗しました",
|
"misconfigured": "Elementの設定が誤っています"
|
||||||
"Your Element is misconfigured": "Elementの設定が誤っています",
|
},
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Elementの設定ファイルに不正なJSONが含まれています。問題を修正してからページを再読み込みしてください。",
|
"failed_to_start": "起動に失敗しました",
|
||||||
"Your browser can't run %(brand)s": "このブラウザーでは%(brand)sが動きません",
|
"go_to_element_io": "element.ioへ移動",
|
||||||
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)sはブラウザーの高度な機能を使う必要がありますが、このブラウザーではその機能がサポートされていないようです。",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Powered by Matrix",
|
"browser_links": "最高のユーザー体験を得るためには、<chromeLink>Chrome</chromeLink>か<firefoxLink>Firefox</firefoxLink>、もしくは<safariLink>Safari</safariLink>をインストールしてください。",
|
||||||
"Use %(brand)s on mobile": "携帯端末で%(brand)sを使用できます",
|
"continue_warning": "リスクを理解して続行",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "$matrixLogo による、分散型で暗号化された会話とコラボレーション",
|
"feature_warning": "現在のブラウザーを使い続けることもできますが、いくつか(もしくは全ての)機能が動作しなかったり、外観が崩れたりする可能性があります。",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(osName)sの%(browserName)s",
|
"features": "%(brand)sはブラウザーの高度な機能を使う必要がありますが、このブラウザーではその機能がサポートされていないようです。",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)sデスクトップ:%(platformName)s"
|
"summary": "このブラウザーでは%(brand)sが動きません",
|
||||||
|
"title": "サポートされていないブラウザー"
|
||||||
|
},
|
||||||
|
"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にようこそ"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "se samtcise'u vau je na slabu",
|
|
||||||
"Dismiss": "nu mipri",
|
|
||||||
"Invalid JSON": ".i le veirdjeisano na drani",
|
|
||||||
"Download Completed": ".i mo'u kibycpa",
|
|
||||||
"Open": "nu viska",
|
|
||||||
"Go to your browser to complete Sign In": ".i do ka'e pilno pa kibrbrauzero lo nu mo'u co'a jaspu",
|
|
||||||
"Unsupported browser": ".i le kibrbrauzero na kakne",
|
|
||||||
"Your browser can't run %(brand)s": ".i na ka'e pilno le kibrbrauzero lo nu pilno la'o zoi. %(brand)s .zoi",
|
|
||||||
"%(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>",
|
|
||||||
"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",
|
|
||||||
"I understand the risks and wish to continue": ".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.",
|
|
||||||
"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",
|
|
||||||
"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",
|
|
||||||
"Your Element is misconfigured": ".i le tcimi'e be la .elyment. be'o vreji na drani",
|
|
||||||
"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",
|
|
||||||
"The message from the parser is: %(message)s": ".i notci fi le genturfa'i fa zoi zoi. %(message)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",
|
|
||||||
"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",
|
|
||||||
"Powered by Matrix": ".i la .meitriks. cu jicmu"
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "უცნობი მოწყობილობა",
|
|
||||||
"Dismiss": "დახურვა",
|
|
||||||
"Welcome to Element": "კეთილი იყოს თქვენი მობრძანება Element-ზე",
|
|
||||||
"Explore rooms": "ოთახების დათავლიერება",
|
|
||||||
"Failed to start": "ჩართვა ვერ მოხერხდა",
|
|
||||||
"Use %(brand)s on mobile": "გამოიყენე %(brand)s-ი მობილურზე",
|
|
||||||
"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-ს. გთხოვთ, გამოასწოროთ პრობლემა და გადატვირთოთ გვერდი.",
|
|
||||||
"Sign In": "შესვლა",
|
|
||||||
"Invalid configuration: no default server specified.": "არასწორი კონფიგურაცია: მთავარი სერვერი არ არის მითითებული.",
|
|
||||||
"Create Account": "ანგარიშის შექმნა",
|
|
||||||
"Go to element.io": "გადადი element.io-ზე",
|
|
||||||
"I understand the risks and wish to continue": "მესმის რისკები და მსურს გაგრძელება",
|
|
||||||
"Unsupported browser": "ბრაუზერი არ არის მხარდაჭერილი",
|
|
||||||
"Your browser can't run %(brand)s": "შენ ბრაუზერს არ შეუძლია გაუშვას %(brand)s-ი",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "კონფიგურაციის ფაილის ჩატვირთვა შეუძლებელია: გთხოვთ, განაახლოთ გვერდი ხელახლა საცდელად.",
|
|
||||||
"Invalid JSON": "არასწორი JSON",
|
|
||||||
"Your Element is 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-ის მიერ",
|
|
||||||
"Go to your browser to complete Sign In": "გადადით თქვენს ბრაუზერში შესვლის დასასრულებლად",
|
|
||||||
"Open": "გახსნა",
|
|
||||||
"Download Completed": "გადმოწერა დასრულებულია",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "დეცენტრალიზებული, დაშიფრული ჩატი & amp; $matrixLogo-ს მიერ შექმნილი თანამშრომლობა",
|
|
||||||
"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 uses advanced browser features which aren't supported by your current browser.": "%(brand)s იყენებს ბრაუზერის გაფართოებულ ფუნქციებს, რომლებიც არ არის მხარდაჭერილი თქვენი ამჟამინდელი ბრაუზერის მიერ.",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s %(osName)s-ზე",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s სამუშაო მაგიდა: %(platformName)s",
|
|
||||||
"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-თან ერთად"
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"Invalid JSON": "JSON armeɣtu",
|
|
||||||
"Go to your browser to complete Sign In": "Ddu ɣer iminig akken ad tkemleḍ ajerred",
|
|
||||||
"Unknown device": "Ibenk arussin",
|
|
||||||
"Create Account": "Rnu amiḍan",
|
|
||||||
"Dismiss": "Agwi",
|
|
||||||
"Sign In": "Kcem",
|
|
||||||
"Explore rooms": "Snirem tixxamin",
|
|
||||||
"Invalid configuration: no default server specified.": "Tawila d tarmeɣtut: ulac aqeddac amezwer i d-yettwafernen.",
|
|
||||||
"The message from the parser is: %(message)s": "Izen n umaslaḍ d: %(message)s",
|
|
||||||
"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.",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "Tella-d tuccḍa lawan n uheyyi n usnas: Wali tadiwent i wugar telqeyt.",
|
|
||||||
"Unsupported browser": "Ur yettusefrak ara yiminig",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"I understand the risks and wish to continue": "Gziɣ ayen ara d-yeḍrun maca bɣiɣ ad kemmleɣ",
|
|
||||||
"Go to element.io": "Ṛuḥ ɣer element.io",
|
|
||||||
"Failed to start": "Asenker ur yeddi ara",
|
|
||||||
"Welcome to Element": "Ansuf ɣer Element",
|
|
||||||
"Your Element is misconfigured": "Aferdis-inek·inem ur yettuswel ara akken iwata",
|
|
||||||
"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.",
|
|
||||||
"Download Completed": "Asider yemmed",
|
|
||||||
"Open": "Ldi",
|
|
||||||
"Your browser can't run %(brand)s": "Iminig-inek·inem ur isselkan ara %(brand)s",
|
|
||||||
"%(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.",
|
|
||||||
"Powered by Matrix": "Iteddu s lmendad n Matrix",
|
|
||||||
"Use %(brand)s on mobile": "Seqdec %(brand)s deg tiliɣri"
|
|
||||||
}
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "버리기",
|
|
||||||
"Unknown device": "알 수 없는 기기",
|
|
||||||
"Welcome to Element": "Element에 오신 것을 환영합니다",
|
|
||||||
"The message from the parser is: %(message)s": "파서에서 온 메시지: %(message)s",
|
|
||||||
"Invalid JSON": "유효하지 않은 JSON",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "앱을 준비하는 동안 예기치 않은 오류가 발생했습니다. 자세한 내용은 콘솔을 확인하세요.",
|
|
||||||
"Invalid configuration: no default server specified.": "잘못된 설정: 기본 서버가 지정되지 않았습니다.",
|
|
||||||
"Sign In": "로그인",
|
|
||||||
"Create Account": "계정 만들기",
|
|
||||||
"Explore rooms": "방 검색",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "설정 파일을 불러오는 데 실패: 페이지를 새로고침한 후에 다시 시도해 주십시오.",
|
|
||||||
"Go to your browser to complete Sign In": "로그인을 완료하려면 브라우저로 이동해주세요",
|
|
||||||
"Unsupported browser": "지원되지 않는 브라우저",
|
|
||||||
"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>를 설치해주세요.",
|
|
||||||
"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": "위험하다는 것을 이해했으며 계속하고 싶습니다",
|
|
||||||
"Go to element.io": "element.io 로 이동",
|
|
||||||
"Failed to start": "시작 실패",
|
|
||||||
"%(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 를 작동할 수 없습니다",
|
|
||||||
"Use %(brand)s on mobile": "모바일에서 %(brand)s 사용",
|
|
||||||
"Powered by Matrix": "Matrix로 지원됨",
|
|
||||||
"Open": "열기",
|
|
||||||
"Download Completed": "다운로드 완료",
|
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "당신의 Element 설정은 유효하지 않은 JSON을 포함합니다. 이 문제를 해결하고 페이지를 새로고침해주세요.",
|
|
||||||
"Your Element is misconfigured": "당신의 Element가 잘못 설정되었습니다",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "$matrixLogo 에서 제공하는 탈중앙화되고 암호화된 협업",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(osName)s 의 %(browserName)s",
|
|
||||||
"%(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을 지정할 수 없습니다."
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
|
@ -1,29 +1,37 @@
|
||||||
{
|
{
|
||||||
"Open": "ເປີດ",
|
"action": {
|
||||||
"Explore rooms": "ສຳຫຼວດບັນດາຫ້ອງ",
|
"create_account": "ສ້າງບັນຊີ",
|
||||||
"Create Account": "ສ້າງບັນຊີ",
|
"dismiss": "ຍົກເລີກ",
|
||||||
"Sign In": "ເຂົ້າສູ່ລະບົບ",
|
"explore_rooms": "ສຳຫຼວດບັນດາຫ້ອງ",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "ການສົນທະນາແບບເຂົ້າລະຫັດ ແລະກະຈ່າຍການຄຸ້ມຄອງ & ການຮ່ວມມື້ ແລະສະໜັບສະໜູນໂດຍ $matrixLogo",
|
"open": "ເປີດ",
|
||||||
"Welcome to Element": "ຍິນດີຕ້ອນຮັບ",
|
"sign_in": "ເຂົ້າສູ່ລະບົບ"
|
||||||
"Failed to start": "ບໍ່ສາມາດເປີດໄດ້",
|
},
|
||||||
"Go to element.io": "ໄປຫາ element.io",
|
"auth": {
|
||||||
"I understand the risks and wish to continue": "ຂ້າພະເຈົ້າເຂົ້າໃຈຄວາມສ່ຽງ ແລະຢາກສືບຕໍ່",
|
"sso_complete_in_browser_dialog_title": "ໄປທີ່ໜ້າເວັບຂອງທ່ານເພື່ອເຂົ້າສູ່ລະບົບ"
|
||||||
"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>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> ສຳລັບປະສົບການທີ່ດີທີ່ສຸດ.",
|
"download_completed": "ດາວໂຫຼດສຳເລັດແລ້ວ",
|
||||||
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s ໃຊ້ຄຸນສົມບັດຂອງບຣາວເຊີຂັ້ນສູງທີ່ບຼາວເຊີປັດຈຸບັນຂອງທ່ານຍັງບໍ່ຮອງຮັບ.",
|
"error": {
|
||||||
"Your browser can't run %(brand)s": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມາດແລ່ນ %(brand)s ໄດ້",
|
"app_launch_unexpected_error": "ເກີດຄວາມຜິດພາດທີ່ບໍ່ຄາດຄິດໃນການກະກຽມແອັບຯ. ເບິ່ງ console ສໍາລັບລາຍລະອຽດ.",
|
||||||
"Unsupported browser": "ບໍ່ຮັບຮອງເວັບບຣາວເຊີນີ້",
|
"cannot_load_config": "ບໍ່ສາມາດໂຫຼດໄຟລ໌ config ໄດ້: ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່ເພື່ອລອງອີກຄັ້ງ.",
|
||||||
"Use %(brand)s on mobile": "ໃຊ້ມືຖື %(brand)s",
|
"invalid_configuration_no_server": "ການຕັ້ງຄ່າບໍ່ຖືກຕ້ອງ: ບໍ່ໄດ້ລະບຸເຊີບເວີເລີ່ມຕົ້ນ.",
|
||||||
"Powered by Matrix": "ສະໜັບສະໜູນໂດຍ Matrix",
|
"invalid_json": "ການຕັ້ງຄ່າແອັບ Element ຂອງທ່ານມີຄ່າ JSON ທີ່ບໍ່ຖືກຕ້ອງ. ກະລຸນາແກ້ໄຂບັນຫາ ແລະໂຫຼດໜ້ານີ້ຄືນໃໝ່.",
|
||||||
"Unknown device": "ທີ່ບໍ່ຮູ້ຈັກອຸປະກອນນີ້",
|
"invalid_json_detail": "ຂໍ້ຄວາມຈາກຕົວປ່ຽນແມ່ນ: %(message)s",
|
||||||
"Go to your browser to complete Sign In": "ໄປທີ່ໜ້າເວັບຂອງທ່ານເພື່ອເຂົ້າສູ່ລະບົບ",
|
"invalid_json_generic": "JSON ບໍ່ຖືກຕ້ອງ",
|
||||||
"Dismiss": "ຍົກເລີກ",
|
"misconfigured": "ການຕັ້ງຄ່າແອັບ Element ຂອງທ່ານບໍ່ຖືກຕ້ອງ"
|
||||||
"Download Completed": "ດາວໂຫຼດສຳເລັດແລ້ວ",
|
},
|
||||||
"Unexpected error preparing the app. See console for details.": "ເກີດຄວາມຜິດພາດທີ່ບໍ່ຄາດຄິດໃນການກະກຽມແອັບຯ. ເບິ່ງ console ສໍາລັບລາຍລະອຽດ.",
|
"failed_to_start": "ບໍ່ສາມາດເປີດໄດ້",
|
||||||
"Unable to load config file: please refresh the page to try again.": "ບໍ່ສາມາດໂຫຼດໄຟລ໌ config ໄດ້: ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່ເພື່ອລອງອີກຄັ້ງ.",
|
"go_to_element_io": "ໄປຫາ element.io",
|
||||||
"Invalid JSON": "JSON ບໍ່ຖືກຕ້ອງ",
|
"incompatible_browser": {
|
||||||
"The message from the parser is: %(message)s": "ຂໍ້ຄວາມຈາກຕົວປ່ຽນແມ່ນ: %(message)s",
|
"browser_links": "ກະລຸນາຕິດຕັ້ງ <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> ສຳລັບປະສົບການທີ່ດີທີ່ສຸດ.",
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "ການຕັ້ງຄ່າແອັບ Element ຂອງທ່ານມີຄ່າ JSON ທີ່ບໍ່ຖືກຕ້ອງ. ກະລຸນາແກ້ໄຂບັນຫາ ແລະໂຫຼດໜ້ານີ້ຄືນໃໝ່.",
|
"continue_warning": "ຂ້າພະເຈົ້າເຂົ້າໃຈຄວາມສ່ຽງ ແລະຢາກສືບຕໍ່",
|
||||||
"Your Element is misconfigured": "ການຕັ້ງຄ່າແອັບ Element ຂອງທ່ານບໍ່ຖືກຕ້ອງ",
|
"feature_warning": "ທ່ານສາມາດສືບຕໍ່ນຳໃຊ້ບຣາວເຊີປັດຈຸບັນຂອງເຈົ້າໄດ້, ແຕ່ບາງຄຸນສົມບັດ ຫຼື ທັງໝົດອາດຈະບໍ່ເຮັດວຽກ ແລະ ລັກສະນະ ແລະ ຄວາມຮູ້ສຶກຂອງແອັບພລິເຄຊັນອາດບໍ່ຖືກຕ້ອງ.",
|
||||||
"Invalid configuration: no default server specified.": "ການຕັ້ງຄ່າບໍ່ຖືກຕ້ອງ: ບໍ່ໄດ້ລະບຸເຊີບເວີເລີ່ມຕົ້ນ."
|
"features": "%(brand)s ໃຊ້ຄຸນສົມບັດຂອງບຣາວເຊີຂັ້ນສູງທີ່ບຼາວເຊີປັດຈຸບັນຂອງທ່ານຍັງບໍ່ຮອງຮັບ.",
|
||||||
|
"summary": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມາດແລ່ນ %(brand)s ໄດ້",
|
||||||
|
"title": "ບໍ່ຮັບຮອງເວັບບຣາວເຊີນີ້"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "ສະໜັບສະໜູນໂດຍ Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "ການສົນທະນາແບບເຂົ້າລະຫັດ ແລະກະຈ່າຍການຄຸ້ມຄອງ & ການຮ່ວມມື້ ແລະສະໜັບສະໜູນໂດຍ $matrixLogo",
|
||||||
|
"unknown_device": "ທີ່ບໍ່ຮູ້ຈັກອຸປະກອນນີ້",
|
||||||
|
"use_brand_on_mobile": "ໃຊ້ມືຖື %(brand)s",
|
||||||
|
"welcome_to_element": "ຍິນດີຕ້ອນຮັບ"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,30 +1,38 @@
|
||||||
{
|
{
|
||||||
"Unknown device": "Nežinomas įrenginys",
|
"action": {
|
||||||
"Welcome to Element": "Sveiki atvykę į Element",
|
"create_account": "Sukurti Paskyrą",
|
||||||
"Dismiss": "Atmesti",
|
"dismiss": "Atmesti",
|
||||||
"Sign In": "Prisijungti",
|
"explore_rooms": "Žvalgyti kambarius",
|
||||||
"Create Account": "Sukurti Paskyrą",
|
"open": "Atidaryti",
|
||||||
"Explore rooms": "Žvalgyti kambarius",
|
"sign_in": "Prisijungti"
|
||||||
"The message from the parser is: %(message)s": "Analizatoriaus žinutė yra: %(message)s",
|
},
|
||||||
"Invalid JSON": "Klaidingas JSON",
|
"auth": {
|
||||||
"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ę.",
|
"sso_complete_in_browser_dialog_title": "Norėdami užbaigti prisijungimą, eikite į naršyklę"
|
||||||
"Invalid configuration: no default server specified.": "Klaidinga konfigūracija: nenurodytas numatytasis serveris.",
|
},
|
||||||
"Go to your browser to complete Sign In": "Norėdami užbaigti prisijungimą, eikite į naršyklę",
|
"desktop_default_device_name": "%(brand)s Kompiuteryje: %(platformName)s",
|
||||||
"Unable to load config file: please refresh the page to try again.": "Nepavyko įkelti konfigūracijos failo: atnaujinkite puslapį, kad pabandytumėte dar kartą.",
|
"download_completed": "Atsisiuntimas baigtas",
|
||||||
"Unsupported browser": "Nepalaikoma naršyklė",
|
"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.": "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.",
|
"app_launch_unexpected_error": "Netikėta klaida ruošiant programą. Norėdami sužinoti daugiau detalių, žiūrėkite konsolę.",
|
||||||
"I understand the risks and wish to continue": "Suprantu šią riziką ir noriu tęsti",
|
"cannot_load_config": "Nepavyko įkelti konfigūracijos failo: atnaujinkite puslapį, kad pabandytumėte dar kartą.",
|
||||||
"Go to element.io": "Eiti į element.io",
|
"invalid_configuration_no_server": "Klaidinga konfigūracija: nenurodytas numatytasis serveris.",
|
||||||
"Failed to start": "Nepavyko paleisti",
|
"invalid_json": "Jūsų Element konfigūracijoje yra klaidingas JSON. Ištaisykite problemą ir iš naujo įkelkite puslapį.",
|
||||||
"Your Element is misconfigured": "Jūsų Element yra neteisingai sukonfigūruotas",
|
"invalid_json_detail": "Analizatoriaus žinutė yra: %(message)s",
|
||||||
"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į.",
|
"invalid_json_generic": "Klaidingas JSON",
|
||||||
"Download Completed": "Atsisiuntimas baigtas",
|
"misconfigured": "Jūsų Element yra neteisingai sukonfigūruotas"
|
||||||
"Open": "Atidaryti",
|
},
|
||||||
"Your browser can't run %(brand)s": "Jūsų naršyklė negali paleisti %(brand)s",
|
"failed_to_start": "Nepavyko paleisti",
|
||||||
"%(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.",
|
"go_to_element_io": "Eiti į element.io",
|
||||||
"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>.",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Veikia su Matrix",
|
"browser_links": "Geriausiam veikimui suinstaliuokite <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, arba <safariLink>Safari</safariLink>.",
|
||||||
"Use %(brand)s on mobile": "Naudoti %(brand)s mobiliajame telefone",
|
"continue_warning": "Suprantu šią riziką ir noriu tęsti",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Decentralizuotas, užšifruotų pokalbių & bendradarbiavimas, paremtas $matrixLogo",
|
"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.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Kompiuteryje: %(platformName)s"
|
"features": "%(brand)s naudoja išplėstines naršyklės funkcijas, kurių jūsų dabartinė naršyklė nepalaiko.",
|
||||||
|
"summary": "Jūsų naršyklė negali paleisti %(brand)s",
|
||||||
|
"title": "Nepalaikoma naršyklė"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Veikia su Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Decentralizuotas, užšifruotų pokalbių & bendradarbiavimas, paremtas $matrixLogo",
|
||||||
|
"unknown_device": "Nežinomas įrenginys",
|
||||||
|
"use_brand_on_mobile": "Naudoti %(brand)s mobiliajame telefone",
|
||||||
|
"welcome_to_element": "Sveiki atvykę į Element"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "Atmest",
|
|
||||||
"Unknown device": "Nezināma ierīce",
|
|
||||||
"Welcome to Element": "Laipni lūdzam Element!",
|
|
||||||
"Sign In": "Pieteikties",
|
|
||||||
"Create Account": "Izveidot kontu",
|
|
||||||
"Explore rooms": "Pārlūkot istabas",
|
|
||||||
"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.",
|
|
||||||
"The message from the parser is: %(message)s": "Ziņa no parsētāja ir: %(message)s",
|
|
||||||
"Invalid JSON": "Nederīgs JSON",
|
|
||||||
"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.",
|
|
||||||
"Go to your browser to complete Sign In": "Jādodas uz pārlūku, lai pabeigtu pieteikšanos",
|
|
||||||
"Unsupported browser": "Neatbalstīts pārlūks",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"I understand the risks and wish to continue": "Es apzinos iespējamās sekas un vēlos turpināt",
|
|
||||||
"Go to element.io": "Doties uz element.io",
|
|
||||||
"Failed to start": "Neizdevās palaist",
|
|
||||||
"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ā.",
|
|
||||||
"Your browser can't run %(brand)s": "Šajā pārlūkā nevar palaist %(brand)s",
|
|
||||||
"Open": "Atvērt",
|
|
||||||
"Download Completed": "Lejupielāde ir pabeigta",
|
|
||||||
"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.",
|
|
||||||
"Your Element is misconfigured": "Element ir kļūdaini iestatīts",
|
|
||||||
"Use %(brand)s on mobile": "Viedtālrunī jāizmanto %(brand)s",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Decentralizēta, šifrēta saziņa un sadarbība, ko nodrošina $matrixLogo",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s darbvirsma: %(platformName)s",
|
|
||||||
"%(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"
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "ഒഴിവാക്കുക",
|
|
||||||
"Unknown device": "അപരിചിത ഡിവൈസ്",
|
|
||||||
"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 തെറ്റായിട്ടാണ് കോൺഫിഗർ ചെയ്തിരിക്കുന്നത്",
|
|
||||||
"Invalid configuration: no default server specified.": "അസാധുവായ കോൺഫിഗറേഷൻ: സ്ഥിര സെർവർ ഒന്നും വ്യക്തമാക്കിയില്ല.",
|
|
||||||
"Download Completed": "ഡൗൺലോഡ് പൂർത്തിയായി",
|
|
||||||
"Unsupported browser": "പിന്തുണയ്ക്കാത്ത ബ്രൗസർ",
|
|
||||||
"I understand the risks and wish to continue": "ഞാൻ അപകടസാധ്യതകൾ മനസിലാക്കുകയും തുടരാൻ ആഗ്രഹിക്കുകയും ചെയ്യുന്നു",
|
|
||||||
"Go to element.io": "element.io-ലേക്ക് പോവുക",
|
|
||||||
"Failed to start": "ആരംഭിക്കാൻ പരാജയപെട്ടു",
|
|
||||||
"Welcome to Element": "Element-ലേക്ക് സ്വാഗതം",
|
|
||||||
"Sign In": "പ്രവേശിക്കുക",
|
|
||||||
"Create Account": "അക്കൗണ്ട് സൃഷ്ടിക്കുക",
|
|
||||||
"Explore rooms": "മുറികൾ കണ്ടെത്തുക"
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"The message from the parser is: %(message)s": "Парсераас ирсэн мессеж нь: %(message)s",
|
|
||||||
"Invalid JSON": "Буруу ЖСОН",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "Апп бэлдэх үед гарах ёсгүй алдаа. Дэлгэрэнгүйг консолоос харна уу.",
|
|
||||||
"Invalid configuration: no default server specified.": "Буруу тохиргоо: Өгөгдсөл серверийг зааж өгөөгүй байна.",
|
|
||||||
"Unknown device": "Үл мэдэгдэх төхөөрөмж",
|
|
||||||
"Dismiss": "Орхих",
|
|
||||||
"Welcome to Element": "Element -д тавтай морил",
|
|
||||||
"Sign In": "Нэвтрэх",
|
|
||||||
"Create Account": "Хэрэглэгч үүсгэх",
|
|
||||||
"Explore rooms": "Өрөөнүүд үзэх",
|
|
||||||
"Go to your browser to complete Sign In": "Бүрэн нэвтрэхийн тулд вэб хөтөч рүү шилжинэ үү"
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"Invalid configuration: no default server specified.": "ဖွဲ့စည်းပုံ မမှန်ပါ။ default ဆာဗာကို သတ်မှတ်ထားခြင်း မရှိပါ။"
|
|
||||||
}
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "Ukjent enhet",
|
|
||||||
"Dismiss": "Avvis",
|
|
||||||
"Welcome to Element": "Velkommen til Element",
|
|
||||||
"Sign In": "Logg inn",
|
|
||||||
"Create Account": "Opprett konto",
|
|
||||||
"Explore rooms": "Se alle rom",
|
|
||||||
"The message from the parser is: %(message)s": "Meldingen fra parseren er: %(message)s",
|
|
||||||
"Invalid JSON": "Ugyldig JSON",
|
|
||||||
"Invalid configuration: no default server specified.": "Ugyldig konfigurasjon: ingen standardserver spesifisert.",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "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",
|
|
||||||
"Failed to start": "Kunne ikke starte",
|
|
||||||
"Go to element.io": "Gå til element.io",
|
|
||||||
"I understand the risks and wish to continue": "Jeg forstår risikoen og ønsker å fortsette",
|
|
||||||
"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.",
|
|
||||||
"Your browser can't run %(brand)s": "Nettleseren din kan ikke kjøre %(brand)s",
|
|
||||||
"Unsupported browser": "Ustøttet nettleser",
|
|
||||||
"Powered by Matrix": "Drevet av Matrix",
|
|
||||||
"Download Completed": "Nedlasting Fullført",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "Kan ikke laste inn konfigurasjonsfil: oppdater siden for å prøve igjen.",
|
|
||||||
"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.",
|
|
||||||
"Your Element is misconfigured": "Ditt Element er feilkonfigurert",
|
|
||||||
"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.",
|
|
||||||
"%(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.",
|
|
||||||
"Open": "Åpne",
|
|
||||||
"Use %(brand)s on mobile": "Bruk %(brand)s på mobil",
|
|
||||||
"Decentralised, encrypted chat & 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",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s"
|
|
||||||
}
|
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"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> इंस्टॉल करें।",
|
|
||||||
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s उन्नत ब्राउज़र सुविधाओं का उपयोग करते हैं जो आपके वर्तमान ब्राउज़र द्वारा समर्थित नहीं हैं।",
|
|
||||||
"Sign In": "साइन करना",
|
|
||||||
"Explore rooms": "रूम का अन्वेषण करें",
|
|
||||||
"Create Account": "खाता बनाएं",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "विकेन्द्रीकृत, एन्क्रिप्टेड च्याट र $matrixLogo द्वारा संचालित सहयोग",
|
|
||||||
"Welcome to Element": "Element में आपका स्वागत है",
|
|
||||||
"Failed to start": "प्रारंभ करने में विफल",
|
|
||||||
"Go to element.io": "element.io पर जाएं",
|
|
||||||
"I understand the risks and wish to continue": "मैं जोखिमों को समझता हूं और जारी रखना चाहता हूं",
|
|
||||||
"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.": "आप अपने वर्तमान ब्राउज़र का उपयोग जारी रख सकते हैं, लेकिन हो सकता है कि कुछ या सभी सुविधाएं काम न करें और एप्लिकेशन का रंगरूप गलत हो सकता है।",
|
|
||||||
"Your browser can't run %(brand)s": "आपका ब्राउज़र %(brand)s को नहीं चला सकता",
|
|
||||||
"Unsupported browser": "असमर्थित ब्राउज़र",
|
|
||||||
"Use %(brand)s on mobile": "मोबाइल पर %(brand)s का प्रयोग करें",
|
|
||||||
"Powered by Matrix": "मैट्रिक्स द्वारा संचालित",
|
|
||||||
"Unknown device": "अज्ञात यन्त्र",
|
|
||||||
"Go to your browser to complete Sign In": "साइन इन पूरा करने के लिए अपने ब्राउज़र पर जाएं",
|
|
||||||
"Dismiss": "खारिज",
|
|
||||||
"Open": "खुला",
|
|
||||||
"Download Completed": "डाउनलोड सम्पन्न हुआ",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "ऐप्लिकेशन तैयार करने में अनपेक्षित गड़बड़ी हुई. विवरण के लिए कंसोल देखें।",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "कॉन्फ़िग फ़ाइल लोड करने में असमर्थ: कृपया पुन: प्रयास करने के लिए पृष्ठ को रीफ़्रेश करें।",
|
|
||||||
"Invalid JSON": "अमान्य JSON",
|
|
||||||
"The message from the parser is: %(message)s": "पार्सर का संदेश है: %(message)s",
|
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "आपके एलीमेंट कॉन्फ़िगरेशन में अमान्य JSON है. कृपया समस्या को ठीक करें और पृष्ठ को पुनः लोड करें।",
|
|
||||||
"Your Element is misconfigured": "आपका तत्व गलत कॉन्फ़िगर किया गया है",
|
|
||||||
"Invalid configuration: no default server specified.": "अमान्य कॉन्फ़िगरेशन: कोई डिफ़ॉल्ट सर्वर निर्दिष्ट नहीं है।"
|
|
||||||
}
|
|
|
@ -1,31 +1,38 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Sluiten",
|
"action": {
|
||||||
"Unknown device": "Onbekend apparaat",
|
"create_account": "Registreren",
|
||||||
"Welcome to Element": "Welkom bij Element",
|
"dismiss": "Sluiten",
|
||||||
"Sign In": "Inloggen",
|
"explore_rooms": "Kamers ontdekken",
|
||||||
"Create Account": "Registreren",
|
"open": "Openen",
|
||||||
"Explore rooms": "Kamers ontdekken",
|
"sign_in": "Inloggen"
|
||||||
"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.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "De ontleder meldt: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Ga naar je browser om de aanmelding te voltooien"
|
||||||
"Invalid JSON": "Ongeldige JSON",
|
},
|
||||||
"Go to your browser to complete Sign In": "Ga naar je browser om de aanmelding te voltooien",
|
"download_completed": "Download voltooid",
|
||||||
"Unable to load config file: please refresh the page to try again.": "Kan het configuratiebestand niet laden. Herlaad de pagina.",
|
"error": {
|
||||||
"Unsupported browser": "Niet-ondersteunde browser",
|
"app_launch_unexpected_error": "Er is een onverwachte fout opgetreden bij het voorbereiden van de app. Zie de console voor details.",
|
||||||
"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.",
|
"cannot_load_config": "Kan het configuratiebestand niet laden. Herlaad de 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.": "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_configuration_no_server": "Configuratie ongeldig: geen standaardserver opgegeven.",
|
||||||
"I understand the risks and wish to continue": "Ik begrijp de risico's en wil verder gaan",
|
"invalid_json": "Jouw Element configuratie bevat ongeldige JSON. Corrigeer het probleem en herlaad de pagina.",
|
||||||
"Go to element.io": "Ga naar element.io",
|
"invalid_json_detail": "De ontleder meldt: %(message)s",
|
||||||
"Failed to start": "Opstarten mislukt",
|
"invalid_json_generic": "Ongeldige JSON",
|
||||||
"Open": "Openen",
|
"misconfigured": "Jouw Element is verkeerd geconfigureerd"
|
||||||
"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.",
|
},
|
||||||
"Download Completed": "Download voltooid",
|
"failed_to_start": "Opstarten mislukt",
|
||||||
"Your Element is misconfigured": "Jouw Element is verkeerd geconfigureerd",
|
"go_to_element_io": "Ga naar element.io",
|
||||||
"Your browser can't run %(brand)s": "Jouw browser kan %(brand)s niet starten",
|
"incompatible_browser": {
|
||||||
"%(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.",
|
"browser_links": "Installeer <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, of <safariLink>Safari</safariLink> voor de beste gebruikservaring.",
|
||||||
"Powered by Matrix": "Mogelijk gemaakt door Matrix",
|
"continue_warning": "Ik begrijp de risico's en wil verder gaan",
|
||||||
"Use %(brand)s on mobile": "Gebruik %(brand)s op je mobiel",
|
"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.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Gedecentraliseerde, versleutelde chat & samenwerking mogelijk gemaakt door $matrixLogo",
|
"features": "%(brand)s gebruikt geavanceerde functies die niet ondersteund worden in je huidige browser.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s op %(osName)s",
|
"summary": "Jouw browser kan %(brand)s niet starten",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s"
|
"title": "Niet-ondersteunde browser"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Mogelijk gemaakt door Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Gedecentraliseerde, versleutelde chat & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "Ukjend eining",
|
|
||||||
"Dismiss": "Avvis",
|
|
||||||
"Welcome to Element": "Velkomen til Element",
|
|
||||||
"Sign In": "Logg inn",
|
|
||||||
"Create Account": "Opprett konto",
|
|
||||||
"Explore rooms": "Utforsk romma",
|
|
||||||
"The message from the parser is: %(message)s": "Meldinga frå kodetolkaren er: %(message)s",
|
|
||||||
"Invalid JSON": "Ugyldig JSON",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "Uventa feil under lasting av programmet. Sjå konsollen for detaljar.",
|
|
||||||
"Invalid configuration: no default server specified.": "Ugyldig oppsett: Ingen standardtener er spesifisert.",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"Go to your browser to complete Sign In": "Opna nettlesaren din for å fullføra innlogginga",
|
|
||||||
"Unsupported browser": "Nettlesaren er ikkje støtta",
|
|
||||||
"Your browser can't run %(brand)s": "Din nettlesar kan ikkje køyra %(brand)s",
|
|
||||||
"Go to element.io": "Gå til 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.": "Du kan fortsetja å bruka gjeldande nettlesar, men nokre eller alle funksjonane fungerer kanskje ikkje, og utsjånaden og kjensla av applikasjonen kan vera 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",
|
|
||||||
"%(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.",
|
|
||||||
"Use %(brand)s on mobile": "Bruk %(brand)s på mobil",
|
|
||||||
"Powered by Matrix": "Driven av Matrix",
|
|
||||||
"Your Element is misconfigured": "Din Element-klient er sett opp feil",
|
|
||||||
"Failed to start": "Klarte ikkje å starta",
|
|
||||||
"Open": "Opna",
|
|
||||||
"Download Completed": "Nedlasting Fullført",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Desentralisertd kryptert chatt & samarbeid som vert drive av $matrixLogo",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s på %(osName)s",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Skrivebord: %(platformName)s"
|
|
||||||
}
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"The message from the parser is: %(message)s": "Lo messatge de l’analisaire es : %(message)s",
|
|
||||||
"Invalid JSON": "JSON invalida",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "Error inesperada en preparant l’aplicacion. Vejatz la consòla pels detalhs.",
|
|
||||||
"Go to your browser to complete Sign In": "Anatz au navegador per achabar la connexion",
|
|
||||||
"Unknown device": "Periferic desconegut",
|
|
||||||
"Dismiss": "Refusar",
|
|
||||||
"Welcome to Element": "La benvenguda a Element",
|
|
||||||
"Sign In": "Se connectar",
|
|
||||||
"Create Account": "Crear un compte",
|
|
||||||
"Explore rooms": "Percórrer las salas",
|
|
||||||
"Invalid configuration: no default server specified.": "Configuracion invalida : pas de servidor per defauta especificat.",
|
|
||||||
"Failed to start": "Se pòt pas lançar",
|
|
||||||
"Go to element.io": "Anar vès element.io",
|
|
||||||
"I understand the risks and wish to continue": "Comprène los risques e vòle contunhar",
|
|
||||||
"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 .",
|
|
||||||
"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.",
|
|
||||||
"Your browser can't run %(brand)s": "Lo vòstre navigator non pòt pas executar %(brand)s",
|
|
||||||
"%(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",
|
|
||||||
"Powered by Matrix": "Fonciona embei Matrix",
|
|
||||||
"Open": "Dobrir",
|
|
||||||
"Download Completed": "Descharjament achabat",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"Your Element is misconfigured": "Lo vòstre Element es mau configurat",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Discussions decentralizadas, criptadas, collaboracion & botada per $matrixLogo",
|
|
||||||
"Use %(brand)s on mobile": "Utilizatz %(brand)s per telefòn",
|
|
||||||
"%(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"
|
|
||||||
}
|
|
|
@ -1,32 +1,40 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Pomiń",
|
"action": {
|
||||||
"Unknown device": "Nieznane urządzenie",
|
"create_account": "Utwórz konto",
|
||||||
"Welcome to Element": "Witamy w Element",
|
"dismiss": "Pomiń",
|
||||||
"Create Account": "Utwórz konto",
|
"explore_rooms": "Przeglądaj pokoje",
|
||||||
"Sign In": "Zaloguj się",
|
"open": "Otwórz",
|
||||||
"Explore rooms": "Przeglądaj pokoje",
|
"sign_in": "Zaloguj się"
|
||||||
"The message from the parser is: %(message)s": "Wiadomość od parsera to: %(message)s",
|
},
|
||||||
"Invalid JSON": "Błędny JSON",
|
"auth": {
|
||||||
"Unexpected error preparing the app. See console for details.": "Niespodziewany błąd podczas przygotowywania aplikacji. Otwórz konsolę po szczegóły.",
|
"sso_complete_in_browser_dialog_title": "Aby dokończyć proces rejestracji, przejdź do swojej przeglądarki"
|
||||||
"Invalid configuration: no default server specified.": "Błędna konfiguracja: nie wybrano domyślnego serwera.",
|
},
|
||||||
"Go to your browser to complete Sign In": "Aby dokończyć proces rejestracji, przejdź do swojej przeglądarki",
|
"desktop_default_device_name": "Komputer %(brand)s: %(platformName)s",
|
||||||
"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.",
|
"download_completed": "Pobieranie zakończone",
|
||||||
"Unsupported browser": "Niewspierana przeglądarka",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Niespodziewany błąd podczas przygotowywania aplikacji. Otwórz konsolę po szczegóły.",
|
||||||
"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.",
|
"cannot_load_config": "Nie udało się załadować pliku konfiguracyjnego: odśwież stronę, aby spróbować ponownie.",
|
||||||
"I understand the risks and wish to continue": "Rozumiem ryzyko i chcę kontynuować",
|
"invalid_configuration_mixed_server": "Nieprawidłowa konfiguracja: nie można określić default_hs_url wraz z default_server_name lub default_server_config",
|
||||||
"Go to element.io": "Przejdź do element.io",
|
"invalid_configuration_no_server": "Błędna konfiguracja: nie wybrano domyślnego serwera.",
|
||||||
"Failed to start": "Nie udało się wystartować",
|
"invalid_json": "Twoja konfiguracja Elementa zawiera nieprawidłowy JSON. Rozwiąż problem i odśwież stronę.",
|
||||||
"Download Completed": "Pobieranie zakończone",
|
"invalid_json_detail": "Wiadomość od parsera to: %(message)s",
|
||||||
"Open": "Otwórz",
|
"invalid_json_generic": "Błędny JSON",
|
||||||
"Your browser can't run %(brand)s": "Twoja przeglądarka nie obsługuje %(brand)s",
|
"misconfigured": "Twój Element jest nieprawidłowo skonfigurowany"
|
||||||
"%(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.",
|
},
|
||||||
"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ę.",
|
"failed_to_start": "Nie udało się wystartować",
|
||||||
"Your Element is misconfigured": "Twój Element jest nieprawidłowo skonfigurowany",
|
"go_to_element_io": "Przejdź do element.io",
|
||||||
"Powered by Matrix": "Zasilane przez Matrix",
|
"incompatible_browser": {
|
||||||
"Use %(brand)s on mobile": "Użyj %(brand)s w telefonie",
|
"browser_links": "Zainstaluj <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, lub <safariLink>Safari</safariLink> w celu zapewnienia najlepszego działania.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Zdecentralizowany, szyfrowany czat i współpraca oparte na $matrixLogo",
|
"continue_warning": "Rozumiem ryzyko i chcę kontynuować",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s na %(osName)s",
|
"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.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "Komputer %(brand)s: %(platformName)s",
|
"features": "%(brand)s używa funkcji zaawansowanych, które nie są dostępne w Twojej przeglądarce.",
|
||||||
"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"
|
"summary": "Twoja przeglądarka nie obsługuje %(brand)s",
|
||||||
|
"title": "Niewspierana przeglądarka"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "Descartar",
|
|
||||||
"Unknown device": "Dispositivo desconhecido",
|
|
||||||
"Welcome to Element": "Boas-vindas ao Element",
|
|
||||||
"The message from the parser is: %(message)s": "A mensagem do parser é: %(message)s",
|
|
||||||
"Invalid JSON": "JSON inválido",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "Erro inesperado na preparação da aplicação. Veja a consola para mais detalhes.",
|
|
||||||
"Invalid configuration: no default server specified.": "Configuração inválida: servidor padrão não especificado.",
|
|
||||||
"Sign In": "Iniciar sessão",
|
|
||||||
"Create Account": "Criar conta",
|
|
||||||
"Explore rooms": "Explorar rooms",
|
|
||||||
"Go to your browser to complete Sign In": "Abra o seu navegador para completar o inicio de sessão",
|
|
||||||
"Open": "Abrir",
|
|
||||||
"Download Completed": "Transferência concluída",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"Your Element is misconfigured": "O Element está configurado incorretamente",
|
|
||||||
"Powered by Matrix": "Desenvolvido por Matrix",
|
|
||||||
"Go to element.io": "Visite element.io",
|
|
||||||
"I understand the risks and wish to continue": "Compreendo os riscos e pretendo continuar",
|
|
||||||
"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.",
|
|
||||||
"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.",
|
|
||||||
"Unsupported browser": "Browser não suportado",
|
|
||||||
"Failed to start": "Erro ao iniciar",
|
|
||||||
"%(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.",
|
|
||||||
"Your browser can't run %(brand)s": "O teu browser não consegue executar %(brand)s",
|
|
||||||
"Use %(brand)s on mobile": "Usar %(brand)s no telemóvel",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Chat descentralizado e encriptado & colaboração alimentada por $matrixLogo",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s em %(osName)s"
|
|
||||||
}
|
|
|
@ -1,31 +1,37 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Dispensar",
|
"action": {
|
||||||
"Unknown device": "Dispositivo desconhecido",
|
"create_account": "Criar Conta",
|
||||||
"Welcome to Element": "Boas-vindas a Element",
|
"dismiss": "Dispensar",
|
||||||
"Sign In": "Fazer signin",
|
"explore_rooms": "Explorar salas",
|
||||||
"Create Account": "Criar Conta",
|
"open": "Abrir",
|
||||||
"Explore rooms": "Explorar salas",
|
"sign_in": "Fazer signin"
|
||||||
"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 preparando o app. Veja console para detalhes.",
|
"sso_complete_in_browser_dialog_title": "Vá em seu navegador para completar o Registro"
|
||||||
"Invalid configuration: no default server specified.": "Configuração inválida: nenhum servidor default especificado.",
|
},
|
||||||
"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.",
|
"download_completed": "Download Concluído",
|
||||||
"Download Completed": "Download Concluído",
|
"error": {
|
||||||
"Unsupported browser": "Browser insuportado",
|
"app_launch_unexpected_error": "Erro inesperado preparando o app. Veja console para detalhes.",
|
||||||
"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.",
|
"cannot_load_config": "Incapaz de carregar arquivo de configuração: por favor atualize a página para tentar de novo.",
|
||||||
"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_configuration_no_server": "Configuração inválida: nenhum servidor default especificado.",
|
||||||
"I understand the risks and wish to continue": "Eu entendo os riscos e desejo continuar",
|
"invalid_json": "Sua configuração do Element contém JSON inválido. Por favor corrija o problema e recarregue a página.",
|
||||||
"Go to element.io": "Ir para element.io",
|
"invalid_json_detail": "A mensagem do parser é: %(message)s",
|
||||||
"Failed to start": "Falha para iniciar",
|
"invalid_json_generic": "JSON inválido",
|
||||||
"Open": "Abrir",
|
"misconfigured": "Seu Element está mal configurado"
|
||||||
"Go to your browser to complete Sign In": "Vá em seu navegador para completar o Registro",
|
},
|
||||||
"Your Element is misconfigured": "Seu Element está mal configurado",
|
"failed_to_start": "Falha para iniciar",
|
||||||
"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.",
|
"go_to_element_io": "Ir para element.io",
|
||||||
"Your browser can't run %(brand)s": "Seu browser não consegue rodar %(brand)s",
|
"incompatible_browser": {
|
||||||
"%(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.",
|
"browser_links": "Por favor instale <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ou <safariLink>Safari</safariLink> para a melhor experiência.",
|
||||||
"Powered by Matrix": "Powered by Matrix",
|
"continue_warning": "Eu entendo os riscos e desejo continuar",
|
||||||
"Use %(brand)s on mobile": "Usar %(brand)s em celular",
|
"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.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Chat descentralizado e encriptado & colaboração, powered by $matrixLogo",
|
"features": "%(brand)s usa funcionalidade de browser avançada que não é suportada por seu browser atual.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s em %(osName)s",
|
"summary": "Seu browser não consegue rodar %(brand)s",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s"
|
"title": "Browser insuportado"
|
||||||
|
},
|
||||||
|
"powered_by_matrix_with_logo": "Chat descentralizado e encriptado & colaboração, powered by $matrixLogo",
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "Dispozitiv necunoscut",
|
|
||||||
"Dismiss": "Închide",
|
|
||||||
"Welcome to Element": "Bine ai venit pe Element",
|
|
||||||
"Sign In": "Autentifică-te",
|
|
||||||
"Create Account": "Creează-ți Cont",
|
|
||||||
"Explore rooms": "Explorează camerele",
|
|
||||||
"Invalid JSON": "JSON invalid",
|
|
||||||
"Unsupported browser": "Acest browser nu este suportat",
|
|
||||||
"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ță.",
|
|
||||||
"I understand the risks and wish to continue": "Ințeleg riscurile și doresc să continui",
|
|
||||||
"Go to element.io": "Accesează element.io",
|
|
||||||
"Failed to start": "Inițializare eșuată",
|
|
||||||
"Your Element is misconfigured": "Element-ul tău este configurat necorespunzător",
|
|
||||||
"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.",
|
|
||||||
"%(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ă.",
|
|
||||||
"Your browser can't run %(brand)s": "Browser-ul tău nu poate rula %(brand)s",
|
|
||||||
"Use %(brand)s on mobile": "Folosește %(brand)s pe mobil",
|
|
||||||
"Powered by Matrix": "Cu ajutorul Matrix",
|
|
||||||
"Go to your browser to complete Sign In": "Deschide în browser pentru a finaliza Autentificarea",
|
|
||||||
"Open": "Deschide",
|
|
||||||
"Download Completed": "Descărcare Completă",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "Eroare neașteptată în aplicație. Vezi consola pentru detalii.",
|
|
||||||
"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.",
|
|
||||||
"The message from the parser is: %(message)s": "Mesajul de la parser este: %(message)s",
|
|
||||||
"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.",
|
|
||||||
"Invalid configuration: no default server specified.": "Configurație invalidă: niciun server implicit nu este specificat.",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s pe %(osName)s",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Desktop: %(platformName)s",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Chat & colaborare descentralizate și criptate cu ajutorul $matrixLogo"
|
|
||||||
}
|
|
|
@ -1,31 +1,39 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Закрыть",
|
"action": {
|
||||||
"Unknown device": "Неизвестное устройство",
|
"create_account": "Создать учётную запись",
|
||||||
"Welcome to Element": "Добро пожаловать в Element",
|
"dismiss": "Закрыть",
|
||||||
"Sign In": "Войти",
|
"explore_rooms": "Обзор комнат",
|
||||||
"Create Account": "Создать учётную запись",
|
"open": "Открыть",
|
||||||
"Explore rooms": "Обзор комнат",
|
"sign_in": "Войти"
|
||||||
"Unexpected error preparing the app. See console for details.": "Неожиданная ошибка при подготовке приложения. Подробности см. в консоли.",
|
},
|
||||||
"Invalid configuration: no default server specified.": "Неверная конфигурация: сервер по умолчанию не указан.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "Сообщение из парсера: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Перейдите в браузер для завершения входа"
|
||||||
"Invalid JSON": "Неверный JSON",
|
},
|
||||||
"Go to your browser to complete Sign In": "Перейдите в браузер для завершения входа",
|
"desktop_default_device_name": "%(brand)s Рабочий стол: %(platformName)s",
|
||||||
"Unable to load config file: please refresh the page to try again.": "Не удалось загрузить файл конфигурации. Попробуйте обновить страницу.",
|
"download_completed": "Загрузка завершена",
|
||||||
"Unsupported browser": "Неподдерживаемый браузер",
|
"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": "Неверная конфигурация: сервер по умолчанию не указан.",
|
||||||
"Go to element.io": "К element.io",
|
"invalid_json": "Конфигурация Element содержит неверный JSON. Исправьте проблему и обновите страницу.",
|
||||||
"Failed to start": "Старт не удался",
|
"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 неверно настроен"
|
||||||
"Download Completed": "Загрузка завершена",
|
},
|
||||||
"Open": "Открыть",
|
"failed_to_start": "Старт не удался",
|
||||||
"Your browser can't run %(brand)s": "Ваш браузер не может запустить %(brand)s",
|
"go_to_element_io": "К element.io",
|
||||||
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s использует расширенные возможности, которые не поддерживаются вашим браузером.",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "На технологии Matrix",
|
"browser_links": "Пожалуйста поставьте <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, или <safariLink>Safari</safariLink> для лучшей совместимости.",
|
||||||
"Use %(brand)s on mobile": "Воспользуйтесь %(brand)s на мобильном телефоне",
|
"continue_warning": "Я понимаю риск и хочу продолжить",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Децентрализованное, зашифрованное общение и сотрудничество на основе $matrixLogo",
|
"feature_warning": "Вы можете продолжать пользоваться этим браузером, но некоторые возможности будут недоступны и интерфейс может быть отрисован неправильно.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Рабочий стол: %(platformName)s",
|
"features": "%(brand)s использует расширенные возможности, которые не поддерживаются вашим браузером.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s на %(osName)s"
|
"summary": "Ваш браузер не может запустить %(brand)s",
|
||||||
|
"title": "Неподдерживаемый браузер"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
{
|
|
||||||
"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."
|
|
||||||
}
|
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "නොදන්නා උපාංගයකි",
|
|
||||||
"Welcome to Element": "ඉලමන්ට් වෙත සාදරයෙන් පිළිගනිමු",
|
|
||||||
"Open": "විවෘත කරන්න",
|
|
||||||
"Powered by Matrix": "මැට්රික්ස් මඟින් බලගන්වා ඇත",
|
|
||||||
"Sign In": "පිවිසෙන්න",
|
|
||||||
"Dismiss": "ඉවතලන්න",
|
|
||||||
"Explore rooms": "කාමර බලන්න",
|
|
||||||
"Create Account": "ගිණුමක් සාදන්න",
|
|
||||||
"Failed to start": "ඇරඹීමට අපොහොසත් විය",
|
|
||||||
"Go to element.io": "element.io වෙත යන්න",
|
|
||||||
"Your browser can't run %(brand)s": "ඔබගේ අතිරික්සුවට %(brand)s ධාවනය කළ නොහැකිය",
|
|
||||||
"Unsupported browser": "සහය නොදක්වන අතිරික්සුව කි",
|
|
||||||
"Go to your browser to complete Sign In": "පිවිසීම සම්පූර්ණ කිරීමට ඔබගේ අතිරික්සුව වෙත යන්න",
|
|
||||||
"Download Completed": "බාගැනීම සම්පූර්ණයි",
|
|
||||||
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "ඔබගේ වත්මන් අතිරික්සුව සහාය නොදක්වන උසස් විශේෂාංග %(brand)s භාවිත කරයි.",
|
|
||||||
"The message from the parser is: %(message)s": "විග්රහය වෙතින් පණිවිඩය: %(message)s",
|
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "ඔබගේ ඉලෙමන්ට් වින්යාසයෙහි වැරදි JSON අඩංගුය. ගැටලුව නිවැරදි කර පිටුව නැවුම් කරන්න.",
|
|
||||||
"Invalid configuration: no default server specified.": "වින්යාසය වලංගු නොවේ: පෙරනිමි සේවාදායකයක් දක්වා නැත.",
|
|
||||||
"Your Element is misconfigured": "ඉලෙමන්ට් වැරදියට වින්යාසගතයි",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "වින්යාස ගොනුව පූරණය කළ නොහැකිය: පිටුව නැවුම් කරන්න.",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "යෙදුම සූදානමේදී අනපේක්ෂිත දෝෂයකි. විස්තර සඳහා හසුරුවම බලන්න.",
|
|
||||||
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "ඉහළ අත්දැකීමකට <chromeLink>ක්රෝම්</chromeLink>, <firefoxLink>ෆයර්ෆොකස්</firefoxLink>, හෝ <safariLink>සෆාරි</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.": "වත්මන් අතිරික්සුව දිගටම භාවිතා කළ හැකිය, නමුත් සමහර හෝ සියළුම විශේෂාංග ක්රියා නොකරන අතර යෙදුමේ පෙනුම වෙනස් විය හැකිය.",
|
|
||||||
"I understand the risks and wish to continue": "අවදානම වැටහේ, ඉදිරියට යාමට කැමැත්තෙමි",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "විමධ්යගත, සංකේතිත කතාබහ සහ amp; $matrixLogo මගින් බලගැන්වූ සහයෝගිත්වය",
|
|
||||||
"Use %(brand)s on mobile": "දුරකථනය සඳහා %(brand)s",
|
|
||||||
"Invalid JSON": "JSON වලංගු නොවේ"
|
|
||||||
}
|
|
|
@ -1,32 +1,40 @@
|
||||||
{
|
{
|
||||||
"Unknown device": "Neznáme zariadenie",
|
"action": {
|
||||||
"Dismiss": "Zamietnuť",
|
"create_account": "Vytvoriť účet",
|
||||||
"Welcome to Element": "Víta vás Element",
|
"dismiss": "Zamietnuť",
|
||||||
"Sign In": "Prihlásiť sa",
|
"explore_rooms": "Preskúmať miestnosti",
|
||||||
"Create Account": "Vytvoriť účet",
|
"open": "Otvoriť",
|
||||||
"Explore rooms": "Preskúmať miestnosti",
|
"sign_in": "Prihlásiť sa"
|
||||||
"The message from the parser is: %(message)s": "Správa z parsera je: %(message)s",
|
},
|
||||||
"Invalid JSON": "Neplatný JSON",
|
"auth": {
|
||||||
"Unexpected error preparing the app. See console for details.": "Neočakávaná chyba počas pripravovania aplikácie. Pre podrobnosti pozri konzolu.",
|
"sso_complete_in_browser_dialog_title": "Prejdite do prehliadača a dokončite prihlásenie"
|
||||||
"Invalid configuration: no default server specified.": "Neplatné nastavenie: nebol určený východiskový server.",
|
},
|
||||||
"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.",
|
"desktop_default_device_name": "%(brand)s Stolný počítač: %(platformName)s",
|
||||||
"Go to your browser to complete Sign In": "Prejdite do prehliadača a dokončite prihlásenie",
|
"download_completed": "Preberanie dokončené",
|
||||||
"Unsupported browser": "Nepodporovaný prehliadač",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Neočakávaná chyba počas pripravovania aplikácie. Pre podrobnosti pozri konzolu.",
|
||||||
"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.",
|
"cannot_load_config": "Nemožno načítať konfiguračný súbor: prosím obnovte stránku a skúste to znova.",
|
||||||
"I understand the risks and wish to continue": "Rozumiem riziku a chcem pokračovať",
|
"invalid_configuration_mixed_server": "Neplatná konfigurácia: default_hs_url nemôže byť určená spolu s default_server_name alebo default_server_config",
|
||||||
"Go to element.io": "Prejsť na element.io",
|
"invalid_configuration_no_server": "Neplatné nastavenie: nebol určený východiskový server.",
|
||||||
"Failed to start": "Spustenie zlyhalo",
|
"invalid_json": "Vaša konfigurácia Elementu obsahuje nesprávny údaj JSON. Prosím, opravte chybu a obnovte stránku.",
|
||||||
"Download Completed": "Preberanie dokončené",
|
"invalid_json_detail": "Správa z parsera je: %(message)s",
|
||||||
"Open": "Otvoriť",
|
"invalid_json_generic": "Neplatný JSON",
|
||||||
"Your Element is misconfigured": "Váš Element je nesprávne nastavený",
|
"misconfigured": "Váš Element je nesprávne nastavený"
|
||||||
"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.",
|
},
|
||||||
"Your browser can't run %(brand)s": "Váš prehliadač nedokáže spustiť %(brand)s",
|
"failed_to_start": "Spustenie zlyhalo",
|
||||||
"%(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.",
|
"go_to_element_io": "Prejsť na element.io",
|
||||||
"Powered by Matrix": "používa protokol Matrix",
|
"incompatible_browser": {
|
||||||
"Use %(brand)s on mobile": "Používať %(brand)s na mobilnom zariadení",
|
"browser_links": "Prosím, nainštalujte si <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink> alebo <safariLink>Safari</safariLink> pre najlepší zážitok.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Decentralizované, šifrované konverzácie a spolupráca na platforme $matrixLogo",
|
"continue_warning": "Rozumiem riziku a chcem pokračovať",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s na %(osName)s",
|
"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.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Stolný počítač: %(platformName)s",
|
"features": "%(brand)s používa pokročilé funkcie prehliadača, ktoré nie sú podporované vaším aktuálnym prehliadačom.",
|
||||||
"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"
|
"summary": "Váš prehliadač nedokáže spustiť %(brand)s",
|
||||||
|
"title": "Nepodporovaný prehliadač"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "Neznana naprava",
|
|
||||||
"Dismiss": "Opusti",
|
|
||||||
"Welcome to Element": "Dobrodošli v Element",
|
|
||||||
"Sign In": "Prijava",
|
|
||||||
"Create Account": "Registracija",
|
|
||||||
"Explore rooms": "Raziščite sobe",
|
|
||||||
"Invalid configuration: no default server specified.": "Neveljavna konfiguracija: privzeti strežnik ni nastavljen.",
|
|
||||||
"Your Element is misconfigured": "Vaš Element je napačno nastavljen",
|
|
||||||
"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.",
|
|
||||||
"The message from the parser is: %(message)s": "Sporočilo parserja je: %(message)s",
|
|
||||||
"Invalid JSON": "Neveljaven JSON",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "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.",
|
|
||||||
"Download Completed": "Prenos zaključen",
|
|
||||||
"Open": "Odpri",
|
|
||||||
"Go to your browser to complete Sign In": "Nadaljujte s prijavo v spletnem brskalniku",
|
|
||||||
"Powered by Matrix": "Poganja Matrix",
|
|
||||||
"Unsupported browser": "Nepodprt brskalnik",
|
|
||||||
"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.",
|
|
||||||
"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>.",
|
|
||||||
"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.",
|
|
||||||
"I understand the risks and wish to continue": "Razumem tveganje in želim vseeno nadaljevati",
|
|
||||||
"Go to element.io": "Pojdi na element.io",
|
|
||||||
"Failed to start": "Neuspel zagon",
|
|
||||||
"Use %(brand)s on mobile": "Uporabi %(brand)s na mobilni napravi",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Decentraliziran, šifriran pogovor in sodelovanje, omogočen z $matrixLogo",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s na %(osName)s",
|
|
||||||
"%(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"
|
|
||||||
}
|
|
|
@ -1,31 +1,40 @@
|
||||||
{
|
{
|
||||||
"Unknown device": "Pajisje e panjohur",
|
"action": {
|
||||||
"Dismiss": "Mos e merr parasysh",
|
"create_account": "Krijoni Llogari",
|
||||||
"Welcome to Element": "Mirë se vini te Element",
|
"dismiss": "Mos e merr parasysh",
|
||||||
"Sign In": "Hyni",
|
"explore_rooms": "Eksploroni dhoma",
|
||||||
"Create Account": "Krijoni Llogari",
|
"open": "Hape",
|
||||||
"Explore rooms": "Eksploroni dhoma",
|
"sign_in": "Hyni"
|
||||||
"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.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "Mesazhi prej procesit është: %(message)s",
|
"sso_complete_in_browser_dialog_title": "Që të plotësoni Hyrjen, kaloni te shfletuesi juaj"
|
||||||
"Invalid JSON": "JSON i pavlefshëm",
|
},
|
||||||
"Go to your browser to complete Sign In": "Që të plotësoni Hyrjen, kaloni te shfletuesi juaj",
|
"desktop_default_device_name": "%(brand)s për Desktop: %(platformName)s",
|
||||||
"Unable to load config file: please refresh the page to try again.": "S’arrihet të ngarkohet kartelë formësimesh: ju lutemi, rifreskoni faqen dhe riprovoni.",
|
"download_completed": "Shkarkim i Plotësuar",
|
||||||
"Unsupported browser": "Shfletues i pambuluar",
|
"error": {
|
||||||
"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>.",
|
"app_launch_unexpected_error": "Gabim i papritur gjatë përgatitjes së aplikacionit. Për hollësi, shihni konsolën.",
|
||||||
"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.",
|
"cannot_load_config": "S’arrihet të ngarkohet kartelë formësimesh: ju lutemi, rifreskoni faqen dhe riprovoni.",
|
||||||
"I understand the risks and wish to continue": "I kuptoj rreziqet dhe dëshiroj të vazhdoj",
|
"invalid_configuration_mixed_server": "Formësim i pavlefshëm: një default_hs_url s’mund të jepet tok me default_server_name, apo default_server_config",
|
||||||
"Go to element.io": "Shko te element.io",
|
"invalid_configuration_no_server": "Formësim i pavlefshëm: s’është caktuar shërbyes parazgjedhje.",
|
||||||
"Failed to start": "S’u arrit të nisej",
|
"invalid_json": "Formësimi juaj i Element-it përmban JSON të pavlefshëm. Ju lutemi, ndreqeni problemin dhe ringarkoni faqen.",
|
||||||
"Download Completed": "Shkarkim i Plotësuar",
|
"invalid_json_detail": "Mesazhi prej procesit është: %(message)s",
|
||||||
"Open": "Hape",
|
"invalid_json_generic": "JSON i pavlefshëm",
|
||||||
"Your Element is misconfigured": "Element-i juaj është i keqformësuar",
|
"misconfigured": "Element-i juaj është i keqformësuar"
|
||||||
"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.",
|
},
|
||||||
"Your browser can't run %(brand)s": "Shfletuesi juaj s’mund të xhirojë %(brand)s",
|
"failed_to_start": "S’u arrit të nisej",
|
||||||
"%(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 s’i mbulon.",
|
"go_to_element_io": "Shko te element.io",
|
||||||
"Powered by Matrix": "Bazuar në Matrix",
|
"incompatible_browser": {
|
||||||
"Use %(brand)s on mobile": "Përdor %(brand)s në celular",
|
"browser_links": "Ju lutemi, për funksionimin më të mirë, instaloni <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, ose <safariLink>Safari</safariLink>.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Fjalosje & bashkëpunim i decentralizuar, i fshehtëzuar, bazuar në $matrixLogo",
|
"continue_warning": "I kuptoj rreziqet dhe dëshiroj të vazhdoj",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s për Desktop: %(platformName)s",
|
"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.",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s në %(osName)s"
|
"features": "%(brand)s përdor veçori të thelluara të shfletuesit, të cilat shfletuesi juaj i tanishëm s’i mbulon.",
|
||||||
|
"summary": "Shfletuesi juaj s’mund të xhirojë %(brand)s",
|
||||||
|
"title": "Shfletues i pambuluar"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Bazuar në Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Fjalosje & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"Unknown device": "Непознати уређај",
|
|
||||||
"Dismiss": "Одбаци",
|
|
||||||
"Welcome to Element": "Добродошли у Елемент",
|
|
||||||
"Sign In": "Пријави се",
|
|
||||||
"Create Account": "Направи налог",
|
|
||||||
"Explore rooms": "Истражи собе",
|
|
||||||
"Invalid configuration: no default server specified.": "Погрешно подешавање: подразумевани сервер није наведен.",
|
|
||||||
"The message from the parser is: %(message)s": "Порука из парсера: %(message)s",
|
|
||||||
"Invalid JSON": "Погрешан JSON",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "Неочекивана грешка приликом припреме апликације. Погледајте конзолу за више детаља.",
|
|
||||||
"Your Element is misconfigured": "Ваша Елемент апликација је лоше подешена",
|
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Подешавање ваше Елемент апликације садржи неисправни „JSON“. Поправите проблем па поново учитајте ову страницу.",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "Не могу да учитам датотеку подешавања: освежите страницу и покушајте поново.",
|
|
||||||
"Download Completed": "Преузимање завршено",
|
|
||||||
"Open": "Отвори",
|
|
||||||
"Go to your browser to complete Sign In": "Отворите ваш прегледач за довршавање пријаве",
|
|
||||||
"Unsupported browser": "Неподржан прегледач",
|
|
||||||
"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 користи напредне могућности које нису подржане у вашем тренутном прегледачу.",
|
|
||||||
"Please install <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, or <safariLink>Safari</safariLink> for the best experience.": "Инсталирајте <chromeLink>Хром</chromeLink>, <firefoxLink>Фајерфокс</firefoxLink>, или <safariLink>Сафари</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.": "Можете наставити користећи тренутни прегледач али неке могућности можда неће радити и изглед и доживљај апликације може бити лош.",
|
|
||||||
"I understand the risks and wish to continue": "Разумем ризике и желим да наставим",
|
|
||||||
"Go to element.io": "Иди на element.io",
|
|
||||||
"Failed to start": "Неуспех при покретању",
|
|
||||||
"Powered by Matrix": "Оснажен од стране Матрикса"
|
|
||||||
}
|
|
|
@ -1,12 +0,0 @@
|
||||||
{
|
|
||||||
"The message from the parser is: %(message)s": "Poruka iz parsera je: %(message)s",
|
|
||||||
"Invalid JSON": "Pogrešan JSON",
|
|
||||||
"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.",
|
|
||||||
"Unknown device": "Nepoznat uređaj",
|
|
||||||
"Dismiss": "Odbaci",
|
|
||||||
"Welcome to Element": "Dobrodošli u Element",
|
|
||||||
"Sign In": "Prijavite se",
|
|
||||||
"Create Account": "Napravite nalog",
|
|
||||||
"Explore rooms": "Istražite sobe"
|
|
||||||
}
|
|
|
@ -1,32 +1,40 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Avvisa",
|
"action": {
|
||||||
"Unknown device": "Okänd enhet",
|
"create_account": "Skapa konto",
|
||||||
"Welcome to Element": "Välkommen till Element",
|
"dismiss": "Avvisa",
|
||||||
"Sign In": "Logga in",
|
"explore_rooms": "Utforska rum",
|
||||||
"Create Account": "Skapa konto",
|
"open": "Öppna",
|
||||||
"Explore rooms": "Utforska rum",
|
"sign_in": "Logga in"
|
||||||
"The message from the parser is: %(message)s": "Meddelandet från parsern är: %(message)s",
|
},
|
||||||
"Invalid JSON": "Ogiltig JSON",
|
"auth": {
|
||||||
"Unexpected error preparing the app. See console for details.": "Oväntat fel vid appstart. Se konsolen för mer information.",
|
"sso_complete_in_browser_dialog_title": "Gå till din webbläsare för att slutföra inloggningen"
|
||||||
"Invalid configuration: no default server specified.": "Ogiltiga inställningar: ingen standardserver specificerad.",
|
},
|
||||||
"Go to your browser to complete Sign In": "Gå till din webbläsare för att slutföra inloggningen",
|
"desktop_default_device_name": "%(brand)s Skrivbord: %(platformName)s",
|
||||||
"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.",
|
"download_completed": "Nedladdning slutförd",
|
||||||
"Unsupported browser": "Webbläsaren stöds ej",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Oväntat fel vid appstart. Se konsolen för mer information.",
|
||||||
"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.",
|
"cannot_load_config": "Kan inte ladda konfigurationsfilen: ladda om sidan för att försöka igen.",
|
||||||
"I understand the risks and wish to continue": "Jag förstår riskerna och vill fortsätta",
|
"invalid_configuration_mixed_server": "Ogiltig konfiguration: en default_hs_url kan inte anges tillsammans med default_server_name eller default_server_config",
|
||||||
"Go to element.io": "Gå till element.io",
|
"invalid_configuration_no_server": "Ogiltiga inställningar: ingen standardserver specificerad.",
|
||||||
"Failed to start": "Misslyckade att starta",
|
"invalid_json": "Din Elementkonfiguration innehåller ogiltig JSON. Vänligen rätta till problemet och ladda om sidan.",
|
||||||
"Your Element is misconfigured": "Din Element är felkonfigurerad",
|
"invalid_json_detail": "Meddelandet från parsern är: %(message)s",
|
||||||
"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.",
|
"invalid_json_generic": "Ogiltig JSON",
|
||||||
"Download Completed": "Nedladdning slutförd",
|
"misconfigured": "Din Element är felkonfigurerad"
|
||||||
"Open": "Öppna",
|
},
|
||||||
"Powered by Matrix": "Drivs av Matrix",
|
"failed_to_start": "Misslyckade att starta",
|
||||||
"Your browser can't run %(brand)s": "Din webbläsare kan inte köra %(brand)s",
|
"go_to_element_io": "Gå till element.io",
|
||||||
"%(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.",
|
"incompatible_browser": {
|
||||||
"Use %(brand)s on mobile": "Använd %(brand)s på mobilen",
|
"browser_links": "Installera <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, eller <safariLink>Safari</safariLink> för den bästa upplevelsen.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Decentraliserad krypterad chatt & samarbete som drivs av $matrixLogo",
|
"continue_warning": "Jag förstår riskerna och vill fortsätta",
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s på %(osName)s",
|
"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.",
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Skrivbord: %(platformName)s",
|
"features": "%(brand)s använder avancerade webbläsarfunktioner som inte stöds av din aktuella webbläsare.",
|
||||||
"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"
|
"summary": "Din webbläsare kan inte köra %(brand)s",
|
||||||
|
"title": "Webbläsaren stöds ej"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Drivs av Matrix",
|
||||||
|
"powered_by_matrix_with_logo": "Decentraliserad krypterad chatt & 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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"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.",
|
|
||||||
"The message from the parser is: %(message)s": "Ujumbe kutoka kwa mchanganuzi ni: %(message)s",
|
|
||||||
"Invalid JSON": "JSON ni batili",
|
|
||||||
"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.",
|
|
||||||
"Download Completed": "Upakuaji Umekamilika",
|
|
||||||
"Open": "Fungua",
|
|
||||||
"Dismiss": "Sisitiza",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s Kompyuta ya mezani: %(platformName)s",
|
|
||||||
"Go to your browser to complete Sign In": "Nenda kwenye kivinjari chako ili ukamilishe Ingia",
|
|
||||||
"Unknown device": "Kifaa kisichojulikana",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s kwenye%(osName)s",
|
|
||||||
"Powered by Matrix": "Inaendeshwa na Matrix",
|
|
||||||
"Use %(brand)s on mobile": "Tumia %(brand)s kwenye simu",
|
|
||||||
"Unsupported browser": "Kivinjari kisichotumika",
|
|
||||||
"Your browser can't run %(brand)s": "Kivinjari chako hakifanyi kazi %(brand)s",
|
|
||||||
"%(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.",
|
|
||||||
"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",
|
|
||||||
"Go to element.io": "Nenda kwenye element.io",
|
|
||||||
"Failed to start": "Imeshindwa kuanza",
|
|
||||||
"Welcome to Element": "Karibu katika Elementi",
|
|
||||||
"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.",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Ujumbe umesambazwa, nakufichwa & ushirikiano unaoendeshwa na",
|
|
||||||
"Sign In": "Ingia",
|
|
||||||
"Create Account": "Tengeneza Akaunti",
|
|
||||||
"Explore rooms": "Tafuta nafasi",
|
|
||||||
"Invalid configuration: no default server specified.": "Mpangilio batili: hakuna seva chaguo-msingi iliyobainishwa.",
|
|
||||||
"Your Element is misconfigured": "Element yako imesanifiwa vibaya"
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "நீக்கு",
|
|
||||||
"Unknown device": "அறியப்படாத சாதனம்",
|
|
||||||
"Welcome to Element": "எலிமெண்டிற்க்கு வரவேற்க்கிறோம்",
|
|
||||||
"The message from the parser is: %(message)s": "பாகுபடுத்தி அனுப்பிய செய்தி: %(message)s",
|
|
||||||
"Invalid JSON": "தவறான JSON",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "பயன்பாட்டைத் தயார் செய்வதில் எதிர்பாராத பிழை. விவரங்களுக்கு console ஐப் பார்க்கவும்.",
|
|
||||||
"Invalid configuration: no default server specified.": "தவறான உள்ளமைவு: இயல்புநிலை சேவையகம் குறிப்பிடப்படவில்லை.",
|
|
||||||
"Sign In": "உள்நுழைக",
|
|
||||||
"Create Account": "உங்கள் கணக்கை துவங்குங்கள்",
|
|
||||||
"Explore rooms": "அறைகளை ஆராயுங்கள்",
|
|
||||||
"Powered by Matrix": "மேட்ரிக்ஸ் மூலம் இயக்கப்படுகிறது",
|
|
||||||
"Failed to start": "துவங்குவதில் தோல்வி",
|
|
||||||
"Go to element.io": "element.io க்குச் செல்லவும்",
|
|
||||||
"I understand the risks and wish to continue": "நான் அபாயங்களைப் புரிந்துகொண்டு தொடர விரும்புகிறேன்",
|
|
||||||
"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>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, அல்லது அதை <safariLink>Safari</safariLink> ஐ நிறுவவும்.",
|
|
||||||
"%(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 ஐ இயக்க முடியாது",
|
|
||||||
"Unsupported browser": "ஆதரிக்கப்படாத உலாவி",
|
|
||||||
"Use %(brand)s on mobile": "%(brand)s ஐ திறன்பேசியில் பயன்படுத்தவும்",
|
|
||||||
"Go to your browser to complete Sign In": "உள்நுழைவை முடிவுசெய்ய உங்கள் உலாவிக்குச் செல்லவும்",
|
|
||||||
"Open": "திற",
|
|
||||||
"Download Completed": "பதிவிறக்கம் முடிவடைந்தது",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "கட்டமைப்பு கோப்பை ஏற்ற முடியவில்லை: மீண்டும் முயற்சிக்க பக்கத்தைப் புதுப்பிக்கவும்.",
|
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "உங்கள் எலிமெண்ட் உள்ளமைவில் தவறான JSON உள்ளது. தயவுசெய்து இதை சரிசெய்து பக்கத்தை மீண்டும் ஏற்றவும்.",
|
|
||||||
"Your Element is misconfigured": "உங்கள் எலிமெண்ட் தவறாக உள்ளமைக்கப்பட்டுள்ளது",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "மேட்ரிக்ஸ் இனால் செயற்படுத்தபடுகின்ற பரவலாக்கப்பட்ட, மறைகுறியாக்கப்பட்ட , உரையாடல் மற்றும் ஒத்துழைப்பு பயன்பாட்டை",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s இல் %(osName)s",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s டெஸ்க்டாப்: %(platformName)s"
|
|
||||||
}
|
|
|
@ -1,13 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "రద్దుచేయి",
|
|
||||||
"Unknown device": "తెలియని పరికరము",
|
|
||||||
"Go to element.io": "element.io కు వెళ్ళు",
|
|
||||||
"I understand the risks and wish to continue": "నాకు పర్యవసానాలు తెలిసే ముందుకు కొనసాగుతా",
|
|
||||||
"Explore rooms": "గదులను అన్వేెషించు",
|
|
||||||
"Welcome to Element": "ఎలిమెంట్ కు స్వాగతం",
|
|
||||||
"Failed to start": "ప్రారంభించుటలో విఫలం",
|
|
||||||
"Create Account": "ఖాతా తెరువు",
|
|
||||||
"Open": "తెరువు",
|
|
||||||
"Download Completed": "దిగుమతి పూర్తయినది",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "ఆప్ ని తయారు చేసే ప్రక్రియాలో అనుకోని లోపం తలెత్తింది. మరిన్ని వివరాల కోసం కాన్సోల్ ను చూడండి."
|
|
||||||
}
|
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"Dismiss": "ปิด",
|
|
||||||
"Unknown device": "อุปกรณ์ที่ไม่รู้จัก",
|
|
||||||
"Welcome to Element": "ยินดีต้อนรับสู่ Element",
|
|
||||||
"The message from the parser is: %(message)s": "ข้อความจากตัวแยกวิเคราะห์คือ: %(message)s",
|
|
||||||
"Invalid JSON": "JSON ไม่ถูกต้อง",
|
|
||||||
"Sign In": "ลงชื่อเข้า",
|
|
||||||
"Create Account": "สร้างบัญชี",
|
|
||||||
"Explore rooms": "สำรวจห้อง",
|
|
||||||
"Download Completed": "การดาวน์โหลดเสร็จสมบูรณ์",
|
|
||||||
"Go to element.io": "ไปยัง element.io",
|
|
||||||
"Failed to start": "ไม่สามารถเริ่ม",
|
|
||||||
"Open": "เปิด",
|
|
||||||
"Powered by Matrix": "ขับเคลื่อนโดย Matrix",
|
|
||||||
"Unexpected error preparing the app. See console for details.": "เกิดข้อผิดพลาดที่ไม่คาดคิดขณะการเตรียมพร้อมโปรแกรม. คุณสามารถดูรายละเอียดข้อผิดพลาดได้ที่หน้าคอนโซล.",
|
|
||||||
"Unable to load config file: please refresh the page to try again.": "ไม่สามารถโหลดการตั้งค่า: โปรดรีเฟรชหน้าเว็บเพื่อลองใหม่อีกครั้ง.",
|
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "การตั้งค่าของ Element จะต้องอยู่ในรูปแบบ JSON. โปรดแก้ไขการตั้งค่าและโหลดหน้านี้ใหม่อีกครั้ง.",
|
|
||||||
"Your Element is misconfigured": "การตั้งค่าของคุณไม่ถูกต้อง",
|
|
||||||
"Invalid configuration: no default server specified.": "คุณยังไม่ได้ตั้งค่าเซิฟเวอร์หลักในการตั้งค่า.",
|
|
||||||
"I understand the risks and wish to continue": "ฉันเข้าใจความเสี่ยง และดำเนินการต่อ",
|
|
||||||
"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 browser can't run %(brand)s": "เบราว์เซอร์ของคุณไม่สามารถใช้งาน %(brand)s ได้",
|
|
||||||
"Unsupported browser": "เบราว์เซอร์ไม่รองรับ",
|
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "การกระจายศูนย์, แชทที่เข้ารหัส & ขับเคลื่อนโดย $matrixLogo",
|
|
||||||
"%(appName)s: %(browserName)s on %(osName)s": "%(appName)s: %(browserName)s บน %(osName)s",
|
|
||||||
"%(brand)s Desktop: %(platformName)s": "%(brand)s เดสก์ทอป: %(platformName)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.": "คุณสามารถใช้เบราว์เซอร์ปัจจุบันของคุณต่อไปได้ แต่คุณสมบัติบางอย่างหรือทั้งหมดอาจไม่ทำงาน และรูปลักษณ์ของแอปพลิเคชันอาจไม่ถูกต้อง.",
|
|
||||||
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s ใช้คุณลักษณะขั้นสูงของเบราว์เซอร์ซึ่งไม่รองรับโดยเบราว์เซอร์ปัจจุบันของคุณ.",
|
|
||||||
"Use %(brand)s on mobile": "ใช้ %(brand)s บนมือถือ",
|
|
||||||
"Go to your browser to complete Sign In": "ไปที่เบราว์เซอร์ของคุณเพื่อลงชื่อเข้าใช้ให้เสร็จสมบูรณ์."
|
|
||||||
}
|
|
|
@ -1 +0,0 @@
|
||||||
{}
|
|
|
@ -1,29 +1,37 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Kapat",
|
"action": {
|
||||||
"Unknown device": "Bilinmeyen aygıt",
|
"create_account": "Hesap Oluştur",
|
||||||
"Welcome to Element": "Element'e hoş geldiniz",
|
"dismiss": "Kapat",
|
||||||
"Sign In": "Giriş Yap",
|
"explore_rooms": "Odaları keşfet",
|
||||||
"Create Account": "Hesap Oluştur",
|
"open": "Aç",
|
||||||
"Explore rooms": "Odaları keşfet",
|
"sign_in": "Giriş Yap"
|
||||||
"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.",
|
"auth": {
|
||||||
"Invalid configuration: no default server specified.": "Hatalı ayarlar: varsayılan sunucu belirlenmemiş.",
|
"sso_complete_in_browser_dialog_title": "Oturum açmayı tamamlamak için tarayıcınıza gidin"
|
||||||
"The message from the parser is: %(message)s": "Ayrıştırıcıdan gelen mesaj: %(message)s",
|
},
|
||||||
"Go to your browser to complete Sign In": "Oturum açmayı tamamlamak için tarayıcınıza gidin",
|
"download_completed": "İndirme Tamamlandı",
|
||||||
"Your Element is misconfigured": "Element uygulaması hatalı ayarlanmış",
|
"error": {
|
||||||
"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.",
|
"app_launch_unexpected_error": "Uygulama hazırlanırken beklenmeyen bir hata oldu. Detaylar için konsola bakın.",
|
||||||
"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.",
|
"cannot_load_config": "Yapılandırma (config) dosyası yüklenemedi: lütfen yeniden denemek için sayfayı yenileyin.",
|
||||||
"Download Completed": "İndirme Tamamlandı",
|
"invalid_configuration_no_server": "Hatalı ayarlar: varsayılan sunucu belirlenmemiş.",
|
||||||
"Unsupported browser": "Desteklenmeyen tarayıcı",
|
"invalid_json": "Element uygulamasının ayarları hatalı JSON içeriyor. Lütfen hatayı düzeltip sayfayı yenileyin.",
|
||||||
"Your browser can't run %(brand)s": "Tarayıcınız %(brand)s uygulamasını çalıştıramıyor",
|
"invalid_json_detail": "Ayrıştırıcıdan gelen mesaj: %(message)s",
|
||||||
"%(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.",
|
"invalid_json_generic": "Hatalı JSON",
|
||||||
"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.",
|
"misconfigured": "Element uygulaması hatalı ayarlanmış"
|
||||||
"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.",
|
},
|
||||||
"I understand the risks and wish to continue": "Riskleri anlıyorum ve devam etmek istiyorum",
|
"failed_to_start": "Başlatılamadı",
|
||||||
"Go to element.io": "element.io adresine git",
|
"go_to_element_io": "element.io adresine git",
|
||||||
"Failed to start": "Başlatılamadı",
|
"incompatible_browser": {
|
||||||
"Powered by Matrix": "Gücünü Matrix'ten alır",
|
"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.",
|
||||||
"Open": "Aç",
|
"continue_warning": "Riskleri anlıyorum ve devam etmek istiyorum",
|
||||||
"Use %(brand)s on mobile": "Mobilde %(brand)s kullan",
|
"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.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "$matrixLogo tarafından merkeziyetsiz, şifrelenmiş sohbet & iş birliği"
|
"features": "%(brand)s, kullandığınız tarayıcı tarafından desteklenmeyen, gelişmiş tarayıcı özellikleri kullanıyor.",
|
||||||
|
"summary": "Tarayıcınız %(brand)s uygulamasını çalıştıramıyor",
|
||||||
|
"title": "Desteklenmeyen tarayıcı"
|
||||||
|
},
|
||||||
|
"powered_by_matrix": "Gücünü Matrix'ten alır",
|
||||||
|
"powered_by_matrix_with_logo": "$matrixLogo tarafından merkeziyetsiz, şifrelenmiş sohbet & iş birliği",
|
||||||
|
"unknown_device": "Bilinmeyen aygıt",
|
||||||
|
"use_brand_on_mobile": "Mobilde %(brand)s kullan",
|
||||||
|
"welcome_to_element": "Element'e hoş geldiniz"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,14 +0,0 @@
|
||||||
{
|
|
||||||
"Create Account": "senflul amiḍan",
|
|
||||||
"Download Completed": "Ittusmed wagam",
|
|
||||||
"Powered by Matrix": "Ittusker s Matrix",
|
|
||||||
"Sign In": "Kcem",
|
|
||||||
"Go to your browser to complete Sign In": "Ddu ɣer umessara fad ad tsemded azemmem",
|
|
||||||
"Welcome to Element": "Azul g Element",
|
|
||||||
"Go to element.io": "Ddu ɣer element.io",
|
|
||||||
"Unknown device": "Allal arussin",
|
|
||||||
"Dismiss": "Nexxel",
|
|
||||||
"Open": "Ṛẓem",
|
|
||||||
"The message from the parser is: %(message)s": "Tuzint n umeslad: %(message)s",
|
|
||||||
"Use %(brand)s on mobile": "Semres %(brand)s g utilifun"
|
|
||||||
}
|
|
|
@ -1,32 +1,40 @@
|
||||||
{
|
{
|
||||||
"Dismiss": "Відхилити",
|
"action": {
|
||||||
"Unknown device": "Невідомий пристрій",
|
"create_account": "Створити обліковий запис",
|
||||||
"Welcome to Element": "Ласкаво просимо до Element",
|
"dismiss": "Відхилити",
|
||||||
"Sign In": "Увійти",
|
"explore_rooms": "Каталог кімнат",
|
||||||
"Create Account": "Створити обліковий запис",
|
"open": "Відкрити",
|
||||||
"Explore rooms": "Каталог кімнат",
|
"sign_in": "Увійти"
|
||||||
"Unexpected error preparing the app. See console for details.": "Неочікувана помилка при підготовці програми. Дивіться деталі у виводі консолі.",
|
},
|
||||||
"Invalid configuration: no default server specified.": "Невірна конфігурація: не вказано сервер за замовчуванням.",
|
"auth": {
|
||||||
"The message from the parser is: %(message)s": "Повідомлення від аналізатора : %(message)s",
|
"sso_complete_in_browser_dialog_title": "Перейдіть у ваш браузер щоб завершити вхід"
|
||||||
"Invalid JSON": "Хибний JSON",
|
},
|
||||||
"Unsupported browser": "Непідтримуваний браузер",
|
"desktop_default_device_name": "%(brand)s для комп'ютера: %(platformName)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>.",
|
"download_completed": "Завантаження завершено",
|
||||||
"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.": "Ви можете продовжити, користуючись вашим поточним браузером, але деякі функції можуть не працювати, а застосунок може виглядати неправильно.",
|
"error": {
|
||||||
"I understand the risks and wish to continue": "Я усвідомлюю ризик і бажаю продовжити",
|
"app_launch_unexpected_error": "Неочікувана помилка при підготовці програми. Дивіться деталі у виводі консолі.",
|
||||||
"Go to element.io": "Перейти на element.io",
|
"cannot_load_config": "Неможливо завантажити файл конфігурації. Оновіть, будь ласка, сторінку, щоб спробувати знову.",
|
||||||
"Failed to start": "Не вдалося запустити",
|
"invalid_configuration_mixed_server": "Неправильна конфігурація: не можна вказати default_hs_url разом з default_server_name або default_server_config",
|
||||||
"Download Completed": "Завантаження завершено",
|
"invalid_configuration_no_server": "Невірна конфігурація: не вказано сервер за замовчуванням.",
|
||||||
"Your Element is misconfigured": "Ваш Element налаштовано неправильно",
|
"invalid_json": "Ваша конфігурація Element містить хибний JSON. Виправте проблему та оновіть сторінку.",
|
||||||
"Your Element configuration contains invalid JSON. Please correct the problem and reload the page.": "Ваша конфігурація Element містить хибний JSON. Виправте проблему та оновіть сторінку.",
|
"invalid_json_detail": "Повідомлення від аналізатора : %(message)s",
|
||||||
"Unable to load config file: please refresh the page to try again.": "Неможливо завантажити файл конфігурації. Оновіть, будь ласка, сторінку, щоб спробувати знову.",
|
"invalid_json_generic": "Хибний JSON",
|
||||||
"Open": "Відкрити",
|
"misconfigured": "Ваш Element налаштовано неправильно"
|
||||||
"Go to your browser to complete Sign In": "Перейдіть у ваш браузер щоб завершити вхід",
|
},
|
||||||
"Powered by Matrix": "Працює на Matrix",
|
"failed_to_start": "Не вдалося запустити",
|
||||||
"Your browser can't run %(brand)s": "Ваш браузер не може запустити %(brand)s",
|
"go_to_element_io": "Перейти на element.io",
|
||||||
"%(brand)s uses advanced browser features which aren't supported by your current browser.": "%(brand)s використовує передові властивості, які ваш браузер не підтримує.",
|
"incompatible_browser": {
|
||||||
"Use %(brand)s on mobile": "Користуйтеся %(brand)s на мобільному",
|
"browser_links": "Для найкращих вражень від користування встановіть, будь ласка, <chromeLink>Chrome</chromeLink>, <firefoxLink>Firefox</firefoxLink>, або <safariLink>Safari</safariLink>.",
|
||||||
"Decentralised, encrypted chat & collaboration powered by $matrixLogo": "Децентралізована, зашифрована бесіда та співпраця на основі $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 використовує передові властивості, які ваш браузер не підтримує.",
|
||||||
"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"
|
"summary": "Ваш браузер не може запустити %(brand)s",
|
||||||
|
"title": "Непідтримуваний браузер"
|
||||||
|
},
|
||||||
|
"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"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
{
|
|
||||||
"Create Account": "Ro'yxatdan o'tish",
|
|
||||||
"Sign In": "Kirish",
|
|
||||||
"Dismiss": "Bekor qilish",
|
|
||||||
"Open": "Ochiq"
|
|
||||||
}
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue