Fixed hard-coded sentence
authorAlexander Ebert <ebert@woltlab.com>
Fri, 2 Mar 2012 21:05:07 +0000 (22:05 +0100)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 2 Mar 2012 21:05:07 +0000 (22:05 +0100)
wcfsetup/install/files/acp/templates/header.tpl
wcfsetup/install/files/js/WCF.js

index 608061a6bd496bd10b58da8ed877adc23470aedc..289f2094141054f78c9e2d4d37b93f51affd8c80 100644 (file)
@@ -70,7 +70,8 @@
                                'wcf.global.button.enable': '{lang}wcf.global.button.enable{/lang}',
                                'wcf.global.confirmation.cancel': '{lang}wcf.global.confirmation.cancel{/lang}',
                                'wcf.global.confirmation.confirm': '{lang}wcf.global.confirmation.confirm{/lang}',
-                               'wcf.global.confirmation.title': '{lang}wcf.global.confirmation.title{/lang}'
+                               'wcf.global.confirmation.title': '{lang}wcf.global.confirmation.title{/lang}',
+                               'wcf.global.form.edit.success': '{lang}wcf.global.form.edit.success{/lang}'
                        });
                        WCF.Icon.addObject({
                                'wcf.icon.loading': '{if PACKAGE_ID}{@$__wcf->getPath()}{else}wcf/{/if}icon/spinner1.svg'
index ab0d2ddfd31e9b506ff1e520328536283e3cc665..88110e596efe7f6cb4067fa55ae350cfaef0537e 100644 (file)
@@ -4268,7 +4268,7 @@ WCF.Sortable.List.prototype = {
         */
        _success: function(data, textStatus, jqXHR) {
                if (this._notification === null) {
-                       this._notification = new WCF.System.Notification('Ihre Ă„nderungen wurden gespeichert.');
+                       this._notification = new WCF.System.Notification(WCF.Language.get('wcf.global.form.edit.success'));
                }
                
                this._notification.show();