Skip to content

Commit

Permalink
Merge pull request #2047 from Ser1ous/3.x
Browse files Browse the repository at this point in the history
core (fix) lang in template
  • Loading branch information
Ser1ous authored Jan 3, 2022
2 parents fad4dff + d94f2b0 commit 2c4fc49
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion manager/views/page/resources/elements/module.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
@endif
@if(evolutionCMS()->hasPermission('delete_module'))
<li>
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete') }}')">
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete_module') }}')">
<i class="{{ $_style['icon_trash'] }}"></i>
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion manager/views/page/resources/elements/plugin.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</a>
</li>
<li>
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete') }}')">
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete_plugin') }}')">
<i class="{{ $_style['icon_trash'] }}"></i>
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion manager/views/page/resources/elements/snippet.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</a>
</li>
<li>
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete') }}')">
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete_snippet') }}')">
<i class="{{ $_style['icon_trash'] }}"></i>
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion manager/views/page/resources/elements/template.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</a>
</li>
<li>
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete') }}')">
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete_template') }}')">
<i class="{{ $_style['icon_trash'] }}"></i>
</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion manager/views/page/resources/elements/tv.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</a>
</li>
<li>
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete') }}')">
<a href="{{ $item->makeUrl('actions.delete') }}" title="{{ ManagerTheme::getLexicon('delete') }}" onclick="return confirm('{{ ManagerTheme::getLexicon('confirm_delete_tmplvars') }}')">
<i class="{{ $_style['icon_trash'] }}"></i>
</a>
</li>
Expand Down

0 comments on commit 2c4fc49

Please sign in to comment.