Skip to content

Commit

Permalink
Merge pull request #2 from symcon/feature/renameToEnglish
Browse files Browse the repository at this point in the history
Add Englisch Translation
  • Loading branch information
Sunnyka98 committed Dec 1, 2023
2 parents bd20e5d + dd454c5 commit b5efd59
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 3 additions & 1 deletion Schleppzeiger/locale.json → DragPointer/locale.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"Invalid Target Variable": "Ungültige Zielvariable",
" seconds": " Sekunden",
"Trailing Pointer": "Schleppzeiger",
"Reset": "Zurücksetzen"
"Reset": "Zurücksetzen",
"https://www.symcon.de/en/service/documentation/module-reference/dragpointer/": "https://www.symcon.de/de/service/dokumentation/modulreferenz/schleppzeiger/",
"Drag Pointer": "Schleppzeiger"
}
}
}
4 changes: 2 additions & 2 deletions Schleppzeiger/module.json → DragPointer/module.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"id": "{3517D60A-3940-FD08-519A-7B84B3AE2C9A}",
"name": "Schleppzeiger",
"name": "Drag Pointer",
"type": 3,
"vendor": "",
"aliases": [],
"parentRequirements": [],
"childRequirements": [],
"implemented": [],
"prefix": "SZ",
"url": "https://github.com/symcon/Schleppzeiger/Schleppzeiger"
"url": "https://www.symcon.de/en/service/documentation/module-reference/dragpointer/"
}
2 changes: 1 addition & 1 deletion Schleppzeiger/module.php → DragPointer/module.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

declare(strict_types=1);
class Schleppzeiger extends IPSModule
class DragPointer 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,6 +1,6 @@
{
"id": "{FC541C7C-3FDD-CFF0-3496-04E4F1FF04C7}",
"name": "Schleppzeiger",
"name": "Drag Pointer",
"author": "Symcon GmbH",
"url": "https://github.com/symcon/Schleppzeiger",
"compatibility": {
Expand Down
8 changes: 4 additions & 4 deletions tests/SchleppzeigerValidationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

class SchleppzeigerValidationTest extends TestCaseSymconValidation
{
public function testValidateSymconBackup(): void
public function testValidateSymconDragPointer(): void
{
$this->validateLibrary(__DIR__ . '/..');
}

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

0 comments on commit b5efd59

Please sign in to comment.