Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Align translation tools to changes in ckeditor5-dev-* #17301

Merged
merged 21 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
4882012
Introduced `translations:synchronize` script to synchronize translati…
psmyrek Oct 7, 2024
cfa12bf
Introduced `translations:validate` script to validate translations ag…
psmyrek Oct 11, 2024
15d61f7
Added support for skipping adding the license header to the newly cre…
psmyrek Oct 11, 2024
9c2f611
Aligned to `ckeditor5-dev` changes in translations.
psmyrek Oct 11, 2024
1d3178d
Temporarily use `ci/3804` branch that includes changes from `ckeditor…
psmyrek Oct 14, 2024
c8a7403
Use `"Image"` text id from another package.
psmyrek Oct 14, 2024
f0fa900
Added missing language files with empty translations.
psmyrek Oct 14, 2024
33862f7
Revert back the `@ckeditor/ckeditor5-dev-translations` to v44.0.0.
psmyrek Oct 14, 2024
2d8db28
Fixed language contexts and moved related translations between packages.
psmyrek Oct 15, 2024
9366a39
Introduced `translations:move` script to move requested translations …
psmyrek Oct 16, 2024
c9f45ee
Merge branch 'master' into ci/3825
psmyrek Oct 18, 2024
ee3d774
Align translations to changes in `ckeditor5-dev-*`.
psmyrek Oct 18, 2024
b8da9b9
Added support for `--packages` flag in `translations:synchronize` scr…
psmyrek Oct 21, 2024
b284205
Extracted `replaceKebabCaseWithCamelCase()` to a separate util.
psmyrek Oct 21, 2024
37c2395
Updated sections related to translating the project.
psmyrek Oct 21, 2024
ecb0b42
Docs: minor fixes. [short flow]
godai78 Oct 22, 2024
69e2b70
Use the latest `ckeditor5-dev-*` packages.
pomek Oct 22, 2024
ccbcb73
Aligned plural forms.
psmyrek Oct 22, 2024
cdbe07e
Merge pull request #17293 from ckeditor/ci/3808
psmyrek Oct 22, 2024
773c611
Merge branch 'master' into ci/3825
pomek Oct 23, 2024
0a65b8c
Merge pull request #17260 from ckeditor/ci/3825
pomek Oct 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion docs/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ meta-title: CKEditor 5 API | CKEditor 5 documentation

## Contribute

CKEditor is an Open Source project and your contribution is most welcome. Feel free to {@link support/index#reporting-issues report bugs} or improve the code on [GitHub](https://github.com/ckeditor/ckeditor5). Since CKEditor is localized, you can also help [to translate it](https://www.transifex.com/ckeditor/ckeditor5/). You do not need to be a programmer to contribute to the project!
CKEditor is an Open Source project and your contribution is most welcome. Feel free to {@link support/index#reporting-issues report bugs} or improve the code on [GitHub](https://github.com/ckeditor/ckeditor5). Since CKEditor is localized, you can also help {@link framework/contributing/contributing#translating translating it}. You do not need to be a programmer to contribute to the project!
2 changes: 1 addition & 1 deletion docs/framework/contributing/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Some additional things you should keep in mind:

CKEditor 5 is a project with global impact, so contributing translations is both an easy and powerful way to help.

We use the Transifex service for translations at the following address: [https://www.transifex.com/ckeditor/ckeditor5/dashboard/](https://www.transifex.com/ckeditor/ckeditor5/dashboard/).
To make CKEditor 5 available in multiple languages, we use `.po` files for storing translations. These are text files commonly used in software development to translate interface texts. Each CKEditor 5 package keeps translation files in the `lang/translations` directory. To provide missing translations, just edit the `.po` file and prepare a [pull request](#creating-a-pull-request).

Here as well, having a CLA in place is a requirement to become an official translator (see below).

Expand Down
4 changes: 2 additions & 2 deletions docs/framework/deep-dive/localization.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ As the second argument, the translation function accepts a value or an array of
For the same reason, the first argument can only be a string literal or an object literal. Variables cannot be passed.
</info-box>

When using the `t()` function, you can create your own *localizable messages* or reuse *messages* created in CKEditor&nbsp;5 packages that your project depends on. In case of reusing *messages*, you will not need to worry about translating them as all work will be done by the CKEditor&nbsp;5 team and [Transifex translators](https://www.transifex.com/ckeditor/ckeditor5/). Obviously, {@link framework/contributing/contributing#translating your help in translating} will still be appreciated!
When using the `t()` function, you can create your own *localizable messages* or reuse *messages* created in CKEditor&nbsp;5 packages that your project depends on. In the case of reusing *messages*, you will not need to worry about translating them as all the work will be done by the CKEditor&nbsp;5 team. Obviously, {@link framework/contributing/contributing#translating your help in translating} will still be appreciated!

For simple *localizable messages*, use the string form for simplicity:
For a simple *localizable messages*, use the string form for simplicity:

```js
const emojiName = 'cat';
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/setup/ui-language.md
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ ClassicEditor
There are community translations available for Australian and British variations of English, too, as well as various others.

<info-box>
If you want to help translate CKEditor&nbsp;5 into your native language, join the [CKEditor&nbsp;5 project on Transifex](https://www.transifex.com/ckeditor/ckeditor5/). Your help will be much appreciated!
You can help {@link framework/contributing/contributing#translating translating} CKEditor&nbsp;5 into your native language. You do not need to be a programmer to contribute to the project. Your help will be much appreciated!
</info-box>

## Related features
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ meta-description: Learn how to install, integrate, update, configure, and develo

## Contribute

CKEditor is an Open Source project and your contribution is most welcome. Feel free to {@link support/index#reporting-issues report bugs} or improve the code on [GitHub](https://github.com/ckeditor/ckeditor5). Since CKEditor is localized, you can also help [to translate it](https://www.transifex.com/ckeditor/ckeditor5/). You do not need to be a programmer to contribute to the project!
CKEditor&nbsp;5 is an Open Source project and your contribution is most welcome. Feel free to {@link support/index#reporting-issues report bugs} or improve the code on [GitHub](https://github.com/ckeditor/ckeditor5). Since CKEditor&nbsp;5 is localized, you can also help {@link framework/contributing/contributing#translating translating it}. You do not need to be a programmer to contribute to the project!
29 changes: 14 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,17 @@
"@ckeditor/ckeditor5-build-multi-root": "43.2.0",
"@ckeditor/ckeditor5-case-change": "43.2.0",
"@ckeditor/ckeditor5-comments": "43.2.0",
"@ckeditor/ckeditor5-dev-build-tools": "^44.0.0",
"@ckeditor/ckeditor5-dev-bump-year": "^44.0.0",
"@ckeditor/ckeditor5-dev-ci": "^44.0.0",
"@ckeditor/ckeditor5-dev-dependency-checker": "^44.0.0",
"@ckeditor/ckeditor5-dev-docs": "^44.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^44.0.0",
"@ckeditor/ckeditor5-dev-stale-bot": "^44.0.0",
"@ckeditor/ckeditor5-dev-tests": "^44.0.0",
"@ckeditor/ckeditor5-dev-transifex": "^44.0.0",
"@ckeditor/ckeditor5-dev-translations": "^44.0.0",
"@ckeditor/ckeditor5-dev-utils": "^44.0.0",
"@ckeditor/ckeditor5-dev-web-crawler": "^44.0.0",
"@ckeditor/ckeditor5-dev-build-tools": "^45.0.0",
"@ckeditor/ckeditor5-dev-bump-year": "^45.0.0",
"@ckeditor/ckeditor5-dev-ci": "^45.0.0",
"@ckeditor/ckeditor5-dev-dependency-checker": "^45.0.0",
"@ckeditor/ckeditor5-dev-docs": "^45.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^45.0.0",
"@ckeditor/ckeditor5-dev-stale-bot": "^45.0.0",
"@ckeditor/ckeditor5-dev-tests": "^45.0.0",
"@ckeditor/ckeditor5-dev-translations": "^45.0.0",
"@ckeditor/ckeditor5-dev-utils": "^45.0.0",
"@ckeditor/ckeditor5-dev-web-crawler": "^45.0.0",
"@ckeditor/ckeditor5-document-outline": "43.2.0",
"@ckeditor/ckeditor5-export-pdf": "43.2.0",
"@ckeditor/ckeditor5-export-word": "43.2.0",
Expand Down Expand Up @@ -196,9 +195,9 @@
"docs:verify": "node ./scripts/web-crawler/index.mjs --docs",
"docs:lint": "node scripts/vale/vale.mjs",
"docs:vale": "vale",
"translations:collect": "node ./scripts/translations/collect.mjs",
"translations:download": "node ./scripts/translations/download.mjs",
"translations:upload": "node ./scripts/translations/upload.mjs",
"translations:synchronize": "node ./scripts/translations/synchronize.mjs",
"translations:validate": "node ./scripts/translations/synchronize.mjs --validate-only",
"translations:move": "node ./scripts/translations/move.mjs",
"build": "tsc -p ./tsconfig.release-ckeditor5.json",
"build:dist": "node scripts/nim/build-ckeditor5.mjs",
"predll:build": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion packages/ckeditor5-adapter-ckfinder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "43.2.0",
"@ckeditor/ckeditor5-clipboard": "43.2.0",
"@ckeditor/ckeditor5-dev-utils": "^44.0.0",
"@ckeditor/ckeditor5-dev-utils": "^45.0.0",
"@ckeditor/ckeditor5-editor-classic": "43.2.0",
"@ckeditor/ckeditor5-enter": "43.2.0",
"@ckeditor/ckeditor5-heading": "43.2.0",
Expand Down
12 changes: 3 additions & 9 deletions packages/ckeditor5-alignment/lang/translations/af.po
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Afrikaans (https://app.transifex.com/ckeditor/teams/11143/af/)\n"
"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
14 changes: 4 additions & 10 deletions packages/ckeditor5-alignment/lang/translations/ar.po
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Arabic (https://app.transifex.com/ckeditor/teams/11143/ar/)\n"
"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"Plural-Forms: nplurals=6; plural=(n == 0 ? 0 : n == 1 ? 1 : n == 2 ? 2 : n % 100 >= 3 && n % 100 <= 10 ? 3 : n % 100 >= 11 ? 4 : 5);\n"
"Content-Type: text/plain; charset=UTF-8\n"

msgctxt "Toolbar button tooltip for aligning the text to the left."
Expand Down
36 changes: 36 additions & 0 deletions packages/ckeditor5-alignment/lang/translations/ast.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language: ast\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Content-Type: text/plain; charset=UTF-8\n"

msgctxt "Toolbar button tooltip for aligning the text to the left."
msgid "Align left"
msgstr ""

msgctxt "Toolbar button tooltip for aligning the text to the right."
msgid "Align right"
msgstr ""

msgctxt "Toolbar button tooltip for aligning the text to center."
msgid "Align center"
msgstr ""

msgctxt "Toolbar button tooltip for making the text justified."
msgid "Justify"
msgstr ""

msgctxt "Dropdown button tooltip for the text alignment feature."
msgid "Text alignment"
msgstr ""

msgctxt "Label used by assistive technologies describing the text alignment feature toolbar."
msgid "Text alignment toolbar"
msgstr ""
12 changes: 3 additions & 9 deletions packages/ckeditor5-alignment/lang/translations/az.po
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Azerbaijani (https://app.transifex.com/ckeditor/teams/11143/az/)\n"
"Language: az\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
12 changes: 3 additions & 9 deletions packages/ckeditor5-alignment/lang/translations/bg.po
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Bulgarian (https://app.transifex.com/ckeditor/teams/11143/bg/)\n"
"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
12 changes: 3 additions & 9 deletions packages/ckeditor5-alignment/lang/translations/bn.po
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Bengali (https://app.transifex.com/ckeditor/teams/11143/bn/)\n"
"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
14 changes: 4 additions & 10 deletions packages/ckeditor5-alignment/lang/translations/bs.po
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Bosnian (https://app.transifex.com/ckeditor/teams/11143/bs/)\n"
"Language: bs\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11 ? 0 : n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 10 || n % 100 >= 20) ? 1 : 2);\n"
"Content-Type: text/plain; charset=UTF-8\n"

msgctxt "Toolbar button tooltip for aligning the text to the left."
Expand Down
12 changes: 3 additions & 9 deletions packages/ckeditor5-alignment/lang/translations/ca.po
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Catalan (https://app.transifex.com/ckeditor/teams/11143/ca/)\n"
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
14 changes: 4 additions & 10 deletions packages/ckeditor5-alignment/lang/translations/cs.po
Original file line number Diff line number Diff line change
@@ -1,20 +1,14 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Czech (https://app.transifex.com/ckeditor/teams/11143/cs/)\n"
"Language: cs\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
"Plural-Forms: nplurals=3; plural=(n == 1 ? 0 : (n >= 2 && n <= 4) ? 1 : 2);\n"
"Content-Type: text/plain; charset=UTF-8\n"

msgctxt "Toolbar button tooltip for aligning the text to the left."
Expand Down
12 changes: 3 additions & 9 deletions packages/ckeditor5-alignment/lang/translations/da.po
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: Danish (https://app.transifex.com/ckeditor/teams/11143/da/)\n"
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
12 changes: 3 additions & 9 deletions packages/ckeditor5-alignment/lang/translations/de-ch.po
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
# Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
#
# !!! IMPORTANT !!!
# Want to contribute to this file? Submit your changes via a GitHub Pull Request.
#
# Before you edit this file, please keep in mind that contributing to the project
# translations is possible ONLY via the Transifex online service.
#
# To submit your translations, visit https://www.transifex.com/ckeditor/ckeditor5.
#
# To learn more, check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
# Check out the official contributor's guide:
# https://ckeditor.com/docs/ckeditor5/latest/framework/guides/contributing/contributing.html
#
msgid ""
msgstr ""
"Language-Team: German (Switzerland) (https://app.transifex.com/ckeditor/teams/11143/de_CH/)\n"
"Language: de_CH\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Content-Type: text/plain; charset=UTF-8\n"
Expand Down
Loading