rework several instances of translated strings being used with single quotes as HTML element attribute values
This commit is contained in:
parent
d3f26cc4a6
commit
f1759786d7
|
@ -124,7 +124,7 @@ class Af_Psql_Trgm extends Plugin {
|
||||||
function hook_article_button($line) {
|
function hook_article_button($line) {
|
||||||
return "<i style=\"cursor : pointer\" class='material-icons'
|
return "<i style=\"cursor : pointer\" class='material-icons'
|
||||||
onclick=\"Plugins.Psql_Trgm.showRelated(".$line["id"].")\"
|
onclick=\"Plugins.Psql_Trgm.showRelated(".$line["id"].")\"
|
||||||
title='".__('Show related articles')."'>bookmark_outline</i>";
|
title=\"".__('Show related articles')."\">bookmark_outline</i>";
|
||||||
}
|
}
|
||||||
|
|
||||||
function hook_prefs_tab($args) {
|
function hook_prefs_tab($args) {
|
||||||
|
|
|
@ -52,7 +52,7 @@ class Af_Readability extends Plugin {
|
||||||
|
|
||||||
function hook_article_button($line) {
|
function hook_article_button($line) {
|
||||||
return "<i class='material-icons' onclick=\"Plugins.Af_Readability.embed(".$line["id"].")\"
|
return "<i class='material-icons' onclick=\"Plugins.Af_Readability.embed(".$line["id"].")\"
|
||||||
style='cursor : pointer' title='".__('Toggle full article text')."'>description</i>";
|
style='cursor : pointer' title=\"".__('Toggle full article text')."\">description</i>";
|
||||||
}
|
}
|
||||||
|
|
||||||
function hook_prefs_tab($args) {
|
function hook_prefs_tab($args) {
|
||||||
|
|
|
@ -18,7 +18,7 @@ class Note extends Plugin {
|
||||||
|
|
||||||
function hook_article_button($line) {
|
function hook_article_button($line) {
|
||||||
return "<i class='material-icons' onclick=\"Plugins.Note.edit(".$line["id"].")\"
|
return "<i class='material-icons' onclick=\"Plugins.Note.edit(".$line["id"].")\"
|
||||||
style='cursor : pointer' title='".__('Edit article note')."'>note</i>";
|
style='cursor : pointer' title=\"".__('Edit article note')."\">note</i>";
|
||||||
}
|
}
|
||||||
|
|
||||||
function edit() : void {
|
function edit() : void {
|
||||||
|
|
Loading…
Reference in New Issue