string fix: typo. slow down scroll to top in dispys
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
This commit is contained in:
parent
1dd22be4d2
commit
6278b2a923
2
include/security.php
Normal file → Executable file
2
include/security.php
Normal file → Executable file
|
@ -326,7 +326,7 @@ function check_form_security_token($typename = '', $formname = 'form_security_to
|
||||||
}
|
}
|
||||||
|
|
||||||
function check_form_security_std_err_msg() {
|
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') {
|
function check_form_security_token_redirectOnErr($err_redirect, $typename = '', $formname = 'form_security_token') {
|
||||||
if (!check_form_security_token($typename, $formname)) {
|
if (!check_form_security_token($typename, $formname)) {
|
||||||
|
|
|
@ -6596,7 +6596,7 @@ msgstr ""
|
||||||
#: ../../include/security.php:329
|
#: ../../include/security.php:329
|
||||||
msgid ""
|
msgid ""
|
||||||
"The form security token was not correct. This probably happened because the "
|
"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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: ../../include/Contact.php:145 ../../include/conversation.php:813
|
#: ../../include/Contact.php:145 ../../include/conversation.php:813
|
||||||
|
|
|
@ -6405,7 +6405,7 @@ msgstr "Willkommen zurück "
|
||||||
#: ../../include/security.php:329
|
#: ../../include/security.php:329
|
||||||
msgid ""
|
msgid ""
|
||||||
"The form security token was not correct. This probably happened because the "
|
"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."
|
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
|
#: ../../include/Contact.php:137 ../../include/conversation.php:813
|
||||||
|
|
|
@ -1441,7 +1441,7 @@ $a->strings["image/photo"] = "Bild/Foto";
|
||||||
$a->strings["Welcome "] = "Willkommen ";
|
$a->strings["Welcome "] = "Willkommen ";
|
||||||
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
|
$a->strings["Please upload a profile photo."] = "Bitte lade ein Profilbild hoch.";
|
||||||
$a->strings["Welcome back "] = "Willkommen zurück ";
|
$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 status"] = "Status anzeigen";
|
||||||
$a->strings["View profile"] = "Profil anzeigen";
|
$a->strings["View profile"] = "Profil anzeigen";
|
||||||
$a->strings["View photos"] = "Fotos ansehen";
|
$a->strings["View photos"] = "Fotos ansehen";
|
||||||
|
|
|
@ -120,7 +120,7 @@ function dispy_dark_init(&$a) {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('a[href=#top]').click(function() {
|
$('a[href=#top]').click(function() {
|
||||||
$('html, body').animate({scrollTop:0}, '500');
|
$('html, body').animate({scrollTop:0}, 'slow');
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -120,7 +120,7 @@ function dispy_init(&$a) {
|
||||||
});
|
});
|
||||||
|
|
||||||
$('a[href=#top]').click(function() {
|
$('a[href=#top]').click(function() {
|
||||||
$('html, body').animate({scrollTop:0}, '500');
|
$('html, body').animate({scrollTop:0}, 'slow');
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue