Skip to content

Commit

Permalink
Merge pull request #5 from symcon/feature/renameToEnglish
Browse files Browse the repository at this point in the history
Add English Translation
  • Loading branch information
Sunnyka98 committed Dec 1, 2023
2 parents 59fe822 + 165e058 commit 94b79ac
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 3 additions & 1 deletion Gruppensteuerung/locale.json → GroupControl/locale.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"Not all variables are of the same type.": "Nicht alle Variablen sind vom gleichen Typ.",
"Not all variables use the same profile.": "Nicht alle Variablen nutzen das gleiche Profil.",
"Not all variables have an action.": "Nicht alle Variablen haben eine Aktion.",
"Not all variables exist.": "Nicht alle Variablen existieren"
"Not all variables exist.": "Nicht alle Variablen existieren",
"https://www.symcon.de/en/service/documentation/module-reference/group-control/": "https://www.symcon.de/de/service/dokumentation/modulreferenz/gruppensteuerung/",
"Group Control": "Gruppensteuerung"
}
}
}
4 changes: 2 additions & 2 deletions Gruppensteuerung/module.json → GroupControl/module.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"id": "{F197064F-791F-0964-2B8E-563136E9B7B4}",
"name": "Gruppensteuerung",
"name": "Group Control",
"type": 3,
"vendor": "",
"aliases": [],
"parentRequirements": [],
"childRequirements": [],
"implemented": [],
"prefix": "GS",
"url": "https://github.com/symcon/Gruppensteuerung"
"url": "https://www.symcon.de/en/service/documentation/module-reference/group-control/"
}
2 changes: 1 addition & 1 deletion Gruppensteuerung/module.php → GroupControl/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

declare(strict_types=1);

class Gruppensteuerung extends IPSModule
class GroupControl extends IPSModule
{
public function Create()
{
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "{ECCB58C3-31D2-96C0-1E52-7FF61DEEC9C0}",
"author": "Symcon GmbH",
"name": "Gruppensteuerung",
"name": "Group Control",
"url": "https://symcon.de",
"compatibility": {
"version": "5.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/GruppensteuerungValidationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public function testValidateGruppensteuerung(): void
$this->validateLibrary(__DIR__ . '/..');
}

public function testValidateGruppensteuerungModule(): void
public function testValidateGroupControlModule(): void
{
$this->validateModule(__DIR__ . '/../Gruppensteuerung');
$this->validateModule(__DIR__ . '/../GroupControl');
}
}
2 changes: 1 addition & 1 deletion tests/phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</php>
<source>
<include>
<directory suffix=".php">../Gruppensteuerung</directory>
<directory suffix=".php">../GroupControl</directory>
</include>
</source>
</phpunit>

0 comments on commit 94b79ac

Please sign in to comment.