Skip to content

Commit

Permalink
Issue #1467: Fix a sysconfig setting for the loader. Unify a translat…
Browse files Browse the repository at this point in the history
…able message.
  • Loading branch information
Sven committed Jan 12, 2022
1 parent b1181f6 commit 2a28bb0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Kernel/Config/Files/XML/Framework.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7007,7 +7007,7 @@ via the Preferences button after logging in.
</Item>
</Value>
</Setting>
<Setting Name="Loader::Module::AdminCustomerAccept###001-Framework" Required="0" Valid="1">
<Setting Name="Loader::Module::AdminAbout###001-Framework" Required="0" Valid="1">
<Description Translatable="1">Loader module registration for the agent interface.</Description>
<Navigation>Frontend::Admin::ModuleRegistration::Loader</Navigation>
<Value>
Expand Down
4 changes: 2 additions & 2 deletions var/httpd/htdocs/js/Core.Agent.Admin.About.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Core.Agent.Admin.About = (function (TargetNS) {
// bind click function to remove button
$('.LanguageRemove').off('click.About').on('click.About', function () {

if (window.confirm(Core.Language.Translate('Do you really want to delete this privacy policy language?'))) {
if (window.confirm(Core.Language.Translate('Do you really want to delete this language?'))) {
TargetNS.RemoveLanguage($(this));
}
return false;
Expand Down Expand Up @@ -108,7 +108,7 @@ Core.Agent.Admin.About = (function (TargetNS) {
// bind click function to remove button
$('.LanguageRemove').off('click.About').on('click.About', function () {

if (window.confirm(Core.Language.Translate('Do you really want to delete this privacy policy language?'))) {
if (window.confirm(Core.Language.Translate('Do you really want to delete this language?'))) {
TargetNS.RemoveLanguage($(this));
}
return false;
Expand Down
4 changes: 2 additions & 2 deletions var/httpd/htdocs/js/Core.Agent.Admin.CustomerAccept.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Core.Agent.Admin.CustomerAccept = (function (TargetNS) {
// bind click function to remove button
$('.LanguageRemove').off('click.CustomerAccept').on('click.CustomerAccept', function () {

if (window.confirm(Core.Language.Translate('Do you really want to delete this privacy policy language?'))) {
if (window.confirm(Core.Language.Translate('Do you really want to delete this language?'))) {
TargetNS.RemoveLanguage($(this));
}
return false;
Expand Down Expand Up @@ -108,7 +108,7 @@ Core.Agent.Admin.CustomerAccept = (function (TargetNS) {
// bind click function to remove button
$('.LanguageRemove').off('click.CustomerAccept').on('click.CustomerAccept', function () {

if (window.confirm(Core.Language.Translate('Do you really want to delete this privacy policy language?'))) {
if (window.confirm(Core.Language.Translate('Do you really want to delete this language?'))) {
TargetNS.RemoveLanguage($(this));
}
return false;
Expand Down

0 comments on commit 2a28bb0

Please sign in to comment.