Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/splendidinternet/Magento2_German_LocalePack_de_DE
Deutsches Sprachpaket für Magento 2 Community Edition
https://github.com/splendidinternet/Magento2_German_LocalePack_de_DE
Last synced: 28 days ago
JSON representation
Deutsches Sprachpaket für Magento 2 Community Edition
- Host: GitHub
- URL: https://github.com/splendidinternet/Magento2_German_LocalePack_de_DE
- Owner: splendidinternet
- License: osl-3.0
- Created: 2016-01-12T10:02:46.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-18T09:01:07.000Z (over 1 year ago)
- Last Synced: 2024-11-13T06:57:40.280Z (about 1 month ago)
- Language: PHP
- Size: 3.73 MB
- Stars: 86
- Watchers: 17
- Forks: 80
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-magento2 - de_DE - German Language Package. (Open Source Extensions / Localization)
- awesome-magento2 - de_DE - German Language Package. (Open Source Extensions / Localization)
README
# Magento 2 German LocalePack de_DE
Deutsches Sprachpaket für Magento 2 Community Edition (Version 2.4.4)
Die Übersetzung wurde von deutschen Muttersprachlern nach eigenem Ermessen vorgenommen. Die Übersetzung ist komplett, d.h. alle Sprachausgaben von Magento 2 wurden vom Englischen ins Deutsche übersetzt. Gern können Änderungsvorschläge eingebracht oder auch das gesamte Repository geforkt werden, wenn abweichende Übersetzungen eingebracht werden sollen.
Und für Magento 1.x gibt es weiterhin das deutsche Sprachpaket von Rico Neitzel: https://github.com/riconeitzel/German_LocalePack_de_DE
German language pack for Magento 2 Community Edition (Version 2.4.4)
The translation was carried out by native German speakers at their own discretion. The translation is complete, i.e. All Magento 2 language editions have been translated from English to German. Suggestions for changes can be made or the entire repository can be researched if different translations are to be introduced.
# Installation
- Alle Dateien nach `/app/i18n/splendid/de_DE/` kopierenAus dem Magento-Root-Verzeichnis folgende Befehle aufrufen:
```bash
rm pub/static/frontend/Magento/luma/de_DE/js-translation.json
php bin/magento setup:static-content:deploy -f de_DE
php bin/magento setup:upgrade
rm -rf var/di
php bin/magento setup:di:compile
```# Installation mit Composer
```bash
composer require splendidinternet/mage2-locale-de-de
rm pub/static/frontend/Magento/luma/de_DE/js-translation.json
php bin/magento setup:static-content:deploy de_DE
```# Add new phrases
To translate new phrases follow these steps:
### Get phrases from Magento
Run this in your Magento 2 installation:
```bash
php bin/magento i18n:collect-phrases -m > phrases.csv
```### Compare phrases with old translation file
Copy the `phrases.csv` into this repository and run:
```bash
php check_new.php
```This will output a new file `de_DE_new.csv` which only contains the
phrases that are not yet translated in `de_DE.csv`.### Translate phrases
Now you should translate these phrases. Enter the translated phrase
in the *second* column.### Copy new phrases and create a pull request
Copy the new phrases to `de_DE.csv`.
**IMPORTANT**: sort the file alphabetically based on the first column, e.g. with LibreOffice.
Now create a [new pull request](https://help.github.com/articles/creating-a-pull-request/) with
your changes!