german translation of jot-header.tpl

This commit is contained in:
Tobias Diekershoff 2011-01-19 16:27:28 +01:00
parent 387e1aefbc
commit ba9e85261b
1 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ tinyMCE.init({
});
function jotGetLink() {
reply = prompt("Please enter a link URL:");
reply = prompt("Bitte URL des Links angeben:");
if(reply && reply.length) {
$('#profile-rotator').show();
$.get('parse_url?url=' + reply, function(data) {
@ -88,14 +88,14 @@ tinyMCE.init({
}
function jotGetVideo() {
reply = prompt("Please enter a YouTube link:");
reply = prompt("Bitte den YouTube Link angeben:");
if(reply && reply.length) {
tinyMCE.execCommand('mceInsertRawHTML',false,'[youtube]' + reply + '[/youtube]');
}
}
function jotGetLocation() {
reply = prompt("Where are you right now?", $('#jot-location').val());
reply = prompt("Wo bist du im Moment?", $('#jot-location').val());
if(reply && reply.length) {
$('#jot-location').val(reply);
}