Skip to content

Commit 56719bf

Browse files
authored
Merge pull request #92 from CyberLine/main
German Translation, Bugfix
2 parents bf38772 + 200ff50 commit 56719bf

File tree

6 files changed

+93
-0
lines changed

6 files changed

+93
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ ActivityLog Plugin is translated for :
2727

2828
- 🇧🇷 Brazilian Portuguese
2929
- 🇺🇸 English
30+
- 🇩🇪 German
3031
- 🇪🇸 Spanish
3132
- 🇫🇷 French
3233
- 🇮🇷 Persian

resources/lang/de/action.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
return [
4+
'modal' => [
5+
'heading' => 'User Aktivitäten Log',
6+
'description' => 'Tracke alle Aktivitäten, die von Benutzern in der Anwendung durchgeführt werden.',
7+
'tooltip' => 'User Aktivitäten',
8+
],
9+
];

resources/lang/de/forms.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?php
2+
3+
return [
4+
'fields' => [
5+
'log_name' => [
6+
'label' => 'Typ',
7+
],
8+
'event' => [
9+
'label' => 'Ereigniss',
10+
],
11+
'subject_type' => [
12+
'label' => 'Betreff',
13+
],
14+
'causer' => [
15+
'label' => 'Benutzer',
16+
],
17+
'description' => [
18+
'label' => 'Beschreibung',
19+
],
20+
'properties' => [
21+
'label' => 'Attribute',
22+
],
23+
'created_at' => [
24+
'label' => 'Logzeitpunkt',
25+
],
26+
'old' => [
27+
'label' => 'Alt',
28+
],
29+
'attributes' => [
30+
'label' => 'Neu',
31+
],
32+
],
33+
];

resources/lang/de/tables.php

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?php
2+
3+
return [
4+
'columns' => [
5+
'log_name' => [
6+
'label' => 'Typ',
7+
],
8+
'event' => [
9+
'label' => 'Ereignis',
10+
],
11+
'subject_type' => [
12+
'label' => 'Betreff',
13+
],
14+
'causer' => [
15+
'label' => 'Benutzer',
16+
],
17+
'properties' => [
18+
'label' => 'Attribute',
19+
],
20+
'created_at' => [
21+
'label' => 'Logzeitpunkt',
22+
],
23+
],
24+
'filters' => [
25+
'created_at' => [
26+
'label' => 'Logzeitpunkt',
27+
'created_from' => 'Geloggt von ',
28+
'created_until' => 'Geloggt bis',
29+
],
30+
'event' => [
31+
'label' => 'Ereignis',
32+
],
33+
],
34+
];

resources/lang/de/timeline.php

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
return [
3+
'title' => [
4+
'modifiedTitle' => '<strong>%s</strong> wurde <strong>%s</strong> von <strong>%s</strong>. <br><small> Änderung am: <strong>%s</strong></small>',
5+
],
6+
'properties' => [
7+
'modifiedProperties' => '%s %s das folgende: <br>%s',
8+
'compareOldAndNewValues' => [
9+
'notEquals' => '- %s von <strong>%s</strong> auf <strong>%s</strong>',
10+
'equals' => '- %s <strong>%s</strong>',
11+
],
12+
'getNewValues' => '- %s <strong>%s</strong>',
13+
],
14+
];

src/Resources/ActivitylogResource.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ class ActivitylogResource extends Resource
3636
{
3737
use ActionContent;
3838

39+
protected static ?string $slug = 'activitylogs';
40+
3941
public static function getModel(): string
4042
{
4143
return Activity::class;

0 commit comments

Comments
 (0)