Merge https://github.com/friendica/friendica into pull
This commit is contained in:
commit
0d5b8dfafd
|
@ -253,10 +253,9 @@ ACL.prototype.populate = function(data){
|
||||||
//console.log(html);
|
//console.log(html);
|
||||||
that.list_content.append(html);
|
that.list_content.append(html);
|
||||||
});
|
});
|
||||||
$(".acl-list-item img[data-src]").each(function(i, el){
|
$(".acl-list-item[rel!=acl-template] img[data-src]").each(function(i, el){
|
||||||
// Replace data-src attribute with src attribute for every image
|
// Add src attribute for images with a data-src attribute
|
||||||
$(el).attr('src', $(el).data("src"));
|
$(el).attr('src', $(el).data("src"));
|
||||||
$(el).removeAttr("data-src");
|
|
||||||
});
|
});
|
||||||
that.update_view();
|
that.update_view();
|
||||||
}
|
}
|
||||||
|
|
|
@ -183,9 +183,8 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
$("img[data-src]", nnm).each(function(i, el){
|
$("img[data-src]", nnm).each(function(i, el){
|
||||||
// Replace data-src attribute with src attribute for every image
|
// Add src attribute for images with a data-src attribute
|
||||||
$(el).attr('src', $(el).data("src"));
|
$(el).attr('src', $(el).data("src"));
|
||||||
$(el).removeAttr("data-src");
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,16 +16,16 @@
|
||||||
# <matthias@matthiasmoritz.de>, 2012.
|
# <matthias@matthiasmoritz.de>, 2012.
|
||||||
# Oliver <post@toktan.org>, 2012.
|
# Oliver <post@toktan.org>, 2012.
|
||||||
# <sebastian@sebsen.net>, 2012.
|
# <sebastian@sebsen.net>, 2012.
|
||||||
# <tobias.diekershoff@gmx.net>, 2011-2012.
|
# <tobias.diekershoff@gmx.net>, 2011-2013.
|
||||||
# <transifex@zottel.net>, 2011-2012.
|
# <transifex@zottel.net>, 2011-2012.
|
||||||
# <ts+transifex@ml.tschlotfeldt.de>, 2011.
|
# <ts+transifex@ml.tschlotfeldt.de>, 2011.
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: friendica\n"
|
"Project-Id-Version: friendica\n"
|
||||||
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
|
||||||
"POT-Creation-Date: 2012-12-31 10:00-0800\n"
|
"POT-Creation-Date: 2013-01-01 10:00-0800\n"
|
||||||
"PO-Revision-Date: 2012-12-31 11:02+0000\n"
|
"PO-Revision-Date: 2013-01-02 10:07+0000\n"
|
||||||
"Last-Translator: Sennewood <sebastian@sebsen.net>\n"
|
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
|
||||||
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
|
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
@ -9567,11 +9567,11 @@ msgstr "%s mag das nicht."
|
||||||
|
|
||||||
#: ../../include/conversation.php:884
|
#: ../../include/conversation.php:884
|
||||||
msgid "like this"
|
msgid "like this"
|
||||||
msgstr "mag ich"
|
msgstr "mögen dies"
|
||||||
|
|
||||||
#: ../../include/conversation.php:888
|
#: ../../include/conversation.php:888
|
||||||
msgid "don't like this"
|
msgid "don't like this"
|
||||||
msgstr "mag ich nicht"
|
msgstr "mögen dies nicht"
|
||||||
|
|
||||||
#: ../../include/conversation.php:895
|
#: ../../include/conversation.php:895
|
||||||
msgid "people"
|
msgid "people"
|
||||||
|
|
|
@ -2059,8 +2059,8 @@ $a->strings["Delete Selected Items"] = "Lösche die markierten Beiträge";
|
||||||
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
|
$a->strings["Follow Thread"] = "Folge der Unterhaltung";
|
||||||
$a->strings["%s likes this."] = "%s mag das.";
|
$a->strings["%s likes this."] = "%s mag das.";
|
||||||
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
|
$a->strings["%s doesn't like this."] = "%s mag das nicht.";
|
||||||
$a->strings["like this"] = "mag ich";
|
$a->strings["like this"] = "mögen dies";
|
||||||
$a->strings["don't like this"] = "mag ich nicht";
|
$a->strings["don't like this"] = "mögen dies nicht";
|
||||||
$a->strings["people"] = "Leute";
|
$a->strings["people"] = "Leute";
|
||||||
$a->strings["and"] = "und";
|
$a->strings["and"] = "und";
|
||||||
$a->strings[", and %d other people"] = " und %d andere";
|
$a->strings[", and %d other people"] = " und %d andere";
|
||||||
|
|
|
@ -253,10 +253,9 @@ ACL.prototype.populate = function(data){
|
||||||
//console.log(html);
|
//console.log(html);
|
||||||
that.list_content.append(html);
|
that.list_content.append(html);
|
||||||
});
|
});
|
||||||
$(".acl-list-item img[data-src]").each(function(i, el){
|
$(".acl-list-item[rel!=acl-template] img[data-src]").each(function(i, el){
|
||||||
// Replace data-src attribute with src attribute for every image
|
// Add src attribute for images with a data-src attribute
|
||||||
$(el).attr('src', $(el).data("src"));
|
$(el).attr('src', $(el).data("src"));
|
||||||
$(el).removeAttr("data-src");
|
|
||||||
});
|
});
|
||||||
that.update_view();
|
that.update_view();
|
||||||
}
|
}
|
||||||
|
|
|
@ -189,9 +189,8 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
$("img[data-src]", nnm).each(function(i, el){
|
$("img[data-src]", nnm).each(function(i, el){
|
||||||
// Replace data-src attribute with src attribute for every image
|
// Add src attribute for images with a data-src attribute
|
||||||
$(el).attr('src', $(el).data("src"));
|
$(el).attr('src', $(el).data("src"));
|
||||||
$(el).removeAttr("data-src");
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
notif = eNotif.attr('count');
|
notif = eNotif.attr('count');
|
||||||
|
|
|
@ -253,10 +253,9 @@ ACL.prototype.populate = function(data){
|
||||||
//console.log(html);
|
//console.log(html);
|
||||||
that.list_content.append(html);
|
that.list_content.append(html);
|
||||||
});
|
});
|
||||||
$(".acl-list-item img[data-src]").each(function(i, el){
|
$(".acl-list-item[rel!=acl-template] img[data-src]").each(function(i, el){
|
||||||
// Replace data-src attribute with src attribute for every image
|
// Add src attribute for images with a data-src attribute
|
||||||
$(el).attr('src', $(el).data("src"));
|
$(el).attr('src', $(el).data("src"));
|
||||||
$(el).removeAttr("data-src");
|
|
||||||
});
|
});
|
||||||
that.update_view();
|
that.update_view();
|
||||||
}
|
}
|
||||||
|
|
|
@ -181,9 +181,8 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
$("img[data-src]", nnm).each(function(i, el){
|
$("img[data-src]", nnm).each(function(i, el){
|
||||||
// Replace data-src attribute with src attribute for every image
|
// Add src attribute for images with a data-src attribute
|
||||||
$(el).attr('src', $(el).data("src"));
|
$(el).attr('src', $(el).data("src"));
|
||||||
$(el).removeAttr("data-src");
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
notif = eNotif.attr('count');
|
notif = eNotif.attr('count');
|
||||||
|
|
Loading…
Reference in a new issue