]> git.mxchange.org Git - friendica.git/commitdiff
string fix: typo. slow down scroll to top in dispys
authorSimon L'nu <simon.lnu@gmail.com>
Sat, 14 Apr 2012 20:24:35 +0000 (16:24 -0400)
committerSimon L'nu <simon.lnu@gmail.com>
Sat, 14 Apr 2012 20:24:35 +0000 (16:24 -0400)
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
include/security.php [changed mode: 0644->0755]
util/messages.po
view/de/messages.po
view/de/strings.php
view/theme/dispy-dark/theme.php
view/theme/dispy/theme.php

old mode 100644 (file)
new mode 100755 (executable)
index 66622fd..fc816e5
@@ -326,7 +326,7 @@ function check_form_security_token($typename = '', $formname = 'form_security_to
 }
 
 function check_form_security_std_err_msg() {
-       return t('The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before subitting it.') . EOL;
+       return t('The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it.') . EOL;
 }
 function check_form_security_token_redirectOnErr($err_redirect, $typename = '', $formname = 'form_security_token') {
        if (!check_form_security_token($typename, $formname)) {
@@ -344,4 +344,4 @@ function check_form_security_token_ForbiddenOnErr($typename = '', $formname = 'f
                header('HTTP/1.1 403 Forbidden');
                killme();
        }
-}
\ No newline at end of file
+}
index d09b1cfc039c054d907ea23d7cd57b954725769a..b615815875fe4ff91e7b1ca26d80f883c3251624 100644 (file)
@@ -6596,7 +6596,7 @@ msgstr ""
 #: ../../include/security.php:329
 msgid ""
 "The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before subitting it."
+"form has been opened for too long (>3 hours) before submitting it."
 msgstr ""
 
 #: ../../include/Contact.php:145 ../../include/conversation.php:813
index 87994b980143b788ab2c1bf2c7eacb4aa74ba76f..c834ec328d2d8e32efadfe2e8e7c63dbd2a468be 100644 (file)
@@ -6405,7 +6405,7 @@ msgstr "Willkommen zurück "
 #: ../../include/security.php:329
 msgid ""
 "The form security token was not correct. This probably happened because the "
-"form has been opened for too long (>3 hours) before subitting it."
+"form has been opened for too long (>3 hours) before submitting it."
 msgstr "Der Formular-Sicherheits-Token war nicht korrekt. Der Grund ist wahrscheinlich, dass das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."
 
 #: ../../include/Contact.php:137 ../../include/conversation.php:813
index a68a77a75c2e9faecd626da1d310ca369f73fd6b..6a43f049effba4bf1a6627ce29a8936f3a3d24ac 100644 (file)
@@ -1441,7 +1441,7 @@ $a->strings["image/photo"] = "Bild/Foto";
 $a->strings["Welcome "] = "Willkommen ";
 $a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
 $a->strings["Welcome back "] = "Willkommen zurück ";
-$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before subitting it."] = "Der Formular-Sicherheits-Token war nicht korrekt. Der Grund ist wahrscheinlich, dass das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
+$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Der Formular-Sicherheits-Token war nicht korrekt. Der Grund ist wahrscheinlich, dass das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde.";
 $a->strings["View status"] = "Status anzeigen";
 $a->strings["View profile"] = "Profil anzeigen";
 $a->strings["View photos"] = "Fotos ansehen";
index affffc9cbe7b93404dbaa0fedcc0bee1d75b7c9e..d5d489be2f47d510792d8cfcac50a41a6051cc8f 100644 (file)
@@ -120,7 +120,7 @@ function dispy_dark_init(&$a) {
                });
 
                $('a[href=#top]').click(function() {
-                       $('html, body').animate({scrollTop:0}, '500');
+                       $('html, body').animate({scrollTop:0}, 'slow');
                        return false;
                });
 
index 8af61d78bdf36700624d49e3cf0abc0e44afc96e..edc9b9548f756389075f9d69cd509a5bcd9d9ef8 100644 (file)
@@ -120,7 +120,7 @@ function dispy_init(&$a) {
                });
 
                $('a[href=#top]').click(function() {
-                       $('html, body').animate({scrollTop:0}, '500');
+                       $('html, body').animate({scrollTop:0}, 'slow');
                        return false;
                });