diff --git a/src/opnsense/mvc/app/views/OPNsense/Firewall/alias_util.volt b/src/opnsense/mvc/app/views/OPNsense/Firewall/alias_util.volt index 4008e76f3..13cee9347 100644 --- a/src/opnsense/mvc/app/views/OPNsense/Firewall/alias_util.volt +++ b/src/opnsense/mvc/app/views/OPNsense/Firewall/alias_util.volt @@ -86,8 +86,8 @@ $('#find_references').on('click', function (event) { BootstrapDialog.show({ type: BootstrapDialog.TYPE_DEFAULT, - title: '{{ lang._("Find references") }}', - message: '

{{ lang._("Enter an IP address to show in which aliases it is used.") }}

' + + title: '{{ lang._('Find references') }}', + message: '

{{ lang._('Enter an IP address to show in which aliases it is used.') }}

' + '
' + '' + '' + @@ -96,7 +96,7 @@ '
' + '
', buttons: [{ - label: '{{ lang._("Close") }}', + label: '{{ lang._('Close') }}', cssClass: 'btn-primary', action: function(dialogRef) { dialogRef.close(); @@ -111,12 +111,12 @@ if (status !== 'success' || data['status'] !== 'ok') { $('#ip-results').html( '
' + - '{{ lang._("Error while fetching matching aliases:") }}' + ' ' + data['status'] + + '{{ lang._('Error while fetching matching aliases:') }}' + ' ' + data['status'] + '
'); } else if (data.matches === null || data.matches.length === 0) { $('#ip-results').html( '
' + - '{{ lang._("No matches for this IP.") }}' + + '{{ lang._('No matches for this IP.') }}' + '
'); } else { $('#ip-results').html('
');