Skip to content

Commit

Permalink
Merge pull request #7 from symcon/feature/renameToEnglish
Browse files Browse the repository at this point in the history
Add English Translation
  • Loading branch information
Sunnyka98 authored Dec 1, 2023
2 parents 9b8be8b + 547933c commit 371774b
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 9 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 3 additions & 1 deletion Telefonkette/locale.json → PhoneChain/locale.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
"Ready": "Bereit",
"List Position %d": "Listenposition %d",
"Reset Status": "Status zurücksetzen",
"Description": "Beschreibung"
"Description": "Beschreibung",
"https://www.symcon.de/en/service/documentation/module-reference/phone-chain/": "https://www.symcon.de/de/service/dokumentation/modulreferenz/telefonansage/",
"Phone Chain": "Telefonkette"
}
}
}
4 changes: 2 additions & 2 deletions Telefonkette/module.json → PhoneChain/module.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"id": "{58F82675-99C8-5CA1-8333-68CDAD6EBE6E}",
"name": "Telefonkette",
"name": "Phone Chain",
"type": 3,
"vendor": "",
"aliases": [],
"parentRequirements": [],
"childRequirements": [],
"implemented": [],
"prefix": "TK",
"url": "https://github.com/symcon/Telefonkette"
"url": "https://www.symcon.de/en/service/documentation/module-reference/phone-chain/"
}
2 changes: 1 addition & 1 deletion Telefonkette/module.php → PhoneChain/module.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

include_once __DIR__ . '/timeTrait.php';
class Telefonkette extends IPSModule
class PhoneChain extends IPSModule
{
use TestTime;

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "{6B1FE280-1FB8-4A6B-A6F7-27C1C996BBD4}",
"name": "Telefonkette",
"name": "Phone Chain",
"author": "Symcon GmbH",
"url": "https://symcon.de",
"compatibility": {
Expand All @@ -9,4 +9,4 @@
"version": "1.1",
"build": 0,
"date": 0
}
}
4 changes: 2 additions & 2 deletions tests/TelefonketteValidationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public function testValidateTelefonkette(): void
$this->validateLibrary(__DIR__ . '/..');
}

public function testValidateTelefonketteModule(): void
public function testValidatePhoneChainModule(): void
{
$this->validateModule(__DIR__ . '/../Telefonkette');
$this->validateModule(__DIR__ . '/../PhoneChain');
}
}
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">../Telefonkette</directory>
<directory suffix=".php">../PhoneChain</directory>
</include>
</source>
</phpunit>

0 comments on commit 371774b

Please sign in to comment.