Skip to content

Commit

Permalink
add some admin language vars
Browse files Browse the repository at this point in the history
  • Loading branch information
Alpha-Sys committed Dec 15, 2016
1 parent e0ce2db commit e70e312
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions modules/oxcom/oxcom-omc/views/admin/de/omc_lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,9 @@
'IOLY_DETAILS_INSTALLED' => 'Modul installiert',
'IOLY_DETAILS_CONTRIBUTOR' => 'OXID Modul Connector Community',
'IOLY_DETAILS_NOINSTALL' => 'Für dieses Modul ist eine Installation leider nicht möglich, da keine Download-URL hinterlegt wurde.',
'IOLY_VENDOR' => 'Anbieter',
'IOLY_LICENSE' => 'Lizenz',
'IOLY_PRICE' => 'Preis',
'IOLY_TAGS' => 'Tags',
);
?>
4 changes: 4 additions & 0 deletions modules/oxcom/oxcom-omc/views/admin/en/omc_lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +87,9 @@
'IOLY_DETAILS_FILTER_TAGS' => 'Tags',
'IOLY_DETAILS_INSTALLED' => 'Module is installed',
'IOLY_DETAILS_NOINSTALL' => 'For this module, the installation is unfortunately not possible: no download link found.',
'IOLY_VENDOR' => 'Vendor',
'IOLY_LICENSE' => 'License',
'IOLY_PRICE' => 'Price',
'IOLY_TAGS' => 'Tags',
);
?>
8 changes: 4 additions & 4 deletions modules/oxcom/oxcom-omc/views/admin/tpl/omc_main.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -153,13 +153,13 @@
<div style="color:#ccc; margin: 5px 0 5px 0;">&mdash;</div>
<span>{{module.desc.[{$langabbrev}]}}</span>
<div style="color:#ccc; margin: 5px 0 5px 0;">&mdash;</div>
<b>Anbieter:</b> {{module.vendor}}
<b>[{oxmultilang ident='IOLY_VENDOR'}]:</b> {{module.vendor}}
&nbsp;&middot;&nbsp;
<b>Lizenz:</b> {{module.license}}
<b>[{oxmultilang ident='IOLY_LICENSE'}]:</b> {{module.license}}
&nbsp;&middot;&nbsp;
<b>Preis:</b> <span ng-if="module.price == '0.00'">[{oxmultilang ident='IOLY_PRICE_FREE'}]</span><span ng-if="module.price != '0.00'">{{module.price}} &euro;</span>
<b>[{oxmultilang ident='IOLY_PRICE'}]:</b> <span ng-if="module.price == '0.00'">[{oxmultilang ident='IOLY_PRICE_FREE'}]</span><span ng-if="module.price != '0.00'">{{module.price}} &euro;</span>
<br>
<b>Tags:</b> <span ng-repeat="tag in module.tags">{{tag}}<span ng-if="!$last">, </span></span>
<b>[{oxmultilang ident='IOLY_TAGS'}]:</b> <span ng-repeat="tag in module.tags">{{tag}}<span ng-if="!$last">, </span></span>
</div>
</div>
<div class="moduleBoxContentMiddle">
Expand Down

0 comments on commit e70e312

Please sign in to comment.