diff --git a/README.md b/README.md index ec0eec41a01d8c46133cdc7b47738fe499c9ec38..c444c8aa326733f8858152da8389cc4e2f0e35ea 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ Example: ### Available template events For more information go to - [QUIQQER Wiki - Template events](https://dev.quiqqer.com/quiqqer/quiqqer/wikis/design_standard#template-events). + [QUIQQER Wiki - Template events](https://dev.quiqqer.com/quiqqer/core/wikis/design_standard#template-events). ```html diff --git a/ajax/template/LangList.html b/ajax/template/LangList.html index ab5aed42904512a40411dd584a99d595eb3c5a4d..754298ce47b7b2b577bba78b609dc18c0766a150 100644 --- a/ajax/template/LangList.html +++ b/ajax/template/LangList.html @@ -12,7 +12,7 @@ <img src="{$path}{$lang}.png"/> </span> <span class="lcs-menu-list-entry-link-text "> - {locale group="quiqqer/quiqqer" var="language.$lang"} + {locale group="quiqqer/core" var="language.$lang"} </span> </a> diff --git a/locale.xml b/locale.xml index f8b00333ce6315c4e37857669692312812da2ded..8b106bf679acf6449961f41b31e7a8360496b0db 100644 --- a/locale.xml +++ b/locale.xml @@ -959,7 +959,7 @@ </groups> <!-- override locale --> - <groups name="quiqqer/quiqqer" datatype="php"> + <groups name="quiqqer/core" datatype="php"> <locale name="templates.mail.body.header.social" priority="10" html="true"> <de> <![CDATA[ diff --git a/quiqqer/quiqqer/lib/templates/mail/footer.html b/quiqqer/quiqqer/lib/templates/mail/footer.html index 561a079ac31fc561a1a37f93738a0511ae604714..0add9afe6cfdbc986f898d49368f1b34a3209b2e 100644 --- a/quiqqer/quiqqer/lib/templates/mail/footer.html +++ b/quiqqer/quiqqer/lib/templates/mail/footer.html @@ -94,7 +94,7 @@ <tr> <td align="center" valign="middle" width="500" style="font-size: 12px; line-height: 18px; font-family: Helvetica, Arial, sans-serif; color:#666666; padding: 10px 0;"> - {locale group="quiqqer/quiqqer" var="templates.mail.body.footer.social" HOST=$host} + {locale group="quiqqer/core" var="templates.mail.body.footer.social" HOST=$host} </td> </tr> </table> diff --git a/quiqqer/quiqqer/lib/templates/mail/header.html b/quiqqer/quiqqer/lib/templates/mail/header.html index 4ebc63268e399dafaac18fbe9da4c4eba1b06556..9b50963f292b9f2b821221e1cbd92f9af310dd1f 100644 --- a/quiqqer/quiqqer/lib/templates/mail/header.html +++ b/quiqqer/quiqqer/lib/templates/mail/header.html @@ -18,7 +18,7 @@ <table border="0" cellpadding="0" cellspacing="0"> <tr> <td align="right" style="font-size: 14px; font-family: Arial, sans-serif; color: #666666; text-decoration: none;"> - {locale group="quiqqer/quiqqer" var="templates.mail.body.header.social" HOST=QUI::getRewrite()->getProject()->get(1)->getUrlRewrittenWithHost()} + {locale group="quiqqer/core" var="templates.mail.body.header.social" HOST=QUI::getRewrite()->getProject()->get(1)->getUrlRewrittenWithHost()} </td> </tr> </table> diff --git a/settings.xml b/settings.xml index 92d479b81775cd6378814c34a23be20653a77ee5..6700b587f0a5cc330e88aad7d6b3f8b41300a202 100644 --- a/settings.xml +++ b/settings.xml @@ -1310,10 +1310,10 @@ <locale group="quiqqer/system" var="release_from_desc"/> </option> <option value="order_field ASC"> - <locale group="quiqqer/quiqqer" var="order_field_asc"/> + <locale group="quiqqer/core" var="order_field_asc"/> </option> <option value="order_field DESC"> - <locale group="quiqqer/quiqqer" var="order_field_desc"/> + <locale group="quiqqer/core" var="order_field_desc"/> </option> </select> </settings> diff --git a/src/QUI/TemplateCologne/Controls/LangCurrencySwitch.php b/src/QUI/TemplateCologne/Controls/LangCurrencySwitch.php index d714bfdbe6ae8bd4ff102d5cc18bbf0c0ee55caa..49242431855f62205275f88578609f7f01589575 100644 --- a/src/QUI/TemplateCologne/Controls/LangCurrencySwitch.php +++ b/src/QUI/TemplateCologne/Controls/LangCurrencySwitch.php @@ -82,8 +82,8 @@ public function getBody(): string $Currency = QUI\ERP\Currency\Handler::getUserCurrency(); } - if ($Locale->exists('quiqqer/quiqqer', 'language.' . $Project->getLang())) { - $imgAltText = $Locale->get('quiqqer/quiqqer', 'language.' . $Project->getLang()); + if ($Locale->exists('quiqqer/core', 'language.' . $Project->getLang())) { + $imgAltText = $Locale->get('quiqqer/core', 'language.' . $Project->getLang()); } else { $imgAltText = $Locale->get('quiqqer/template-cologne', 'label.language'); };