Button labeled as post

merge-requests/8/head
Bob Mottram 2020-10-25 21:11:57 +00:00
parent a466d6764d
commit ba71d7f487
16 changed files with 40 additions and 25 deletions

View File

@ -319,5 +319,6 @@
"Search": "بحث",
"Expand": "وسعت",
"Newswire": "نيوزواير",
"Links": "الروابط"
"Links": "الروابط",
"Post": "بريد"
}

View File

@ -319,5 +319,6 @@
"Search": "Cerca",
"Expand": "Amplia",
"Newswire": "Newswire",
"Links": "Enllaços"
"Links": "Enllaços",
"Post": "Publicació"
}

View File

@ -319,5 +319,6 @@
"Search": "Chwilio",
"Expand": "Ehangu",
"Newswire": "Newswire",
"Links": "Dolenni"
"Links": "Dolenni",
"Post": "Post"
}

View File

@ -319,5 +319,6 @@
"Search": "Suche",
"Expand": "Erweitern",
"Newswire": "Newswire",
"Links": "Links"
"Links": "Links",
"Post": "Post"
}

View File

@ -319,5 +319,6 @@
"Search": "Search",
"Expand": "Expand",
"Newswire": "Newswire",
"Links": "Links"
"Links": "Links",
"Post": "Post"
}

View File

@ -319,5 +319,6 @@
"Search": "Buscar",
"Expand": "Expandir",
"Newswire": "Newswire",
"Links": "Enlaces"
"Links": "Enlaces",
"Post": "Enviar"
}

View File

@ -319,5 +319,6 @@
"Search": "Chercher",
"Expand": "Développer",
"Newswire": "Newswire",
"Links": "Liens"
"Links": "Liens",
"Post": "Publier"
}

View File

@ -319,5 +319,6 @@
"Search": "Cuardaigh",
"Expand": "Leathnaigh",
"Newswire": "Newswire",
"Links": "Naisc"
"Links": "Naisc",
"Post": "Post"
}

View File

@ -319,5 +319,6 @@
"Search": "खोज",
"Expand": "विस्तार",
"Newswire": "न्यूज़वायर",
"Links": "लिंक"
"Links": "लिंक",
"Post": "पद"
}

View File

@ -319,5 +319,6 @@
"Search": "Ricerca",
"Expand": "Espandere",
"Newswire": "Newswire",
"Links": "Collegamenti"
"Links": "Collegamenti",
"Post": "Inviare"
}

View File

@ -319,5 +319,6 @@
"Search": "探す",
"Expand": "展開",
"Newswire": "Newswire",
"Links": "リンク"
"Links": "リンク",
"Post": "役職"
}

View File

@ -315,5 +315,6 @@
"Search": "Search",
"Expand": "Expand",
"Newswire": "Newswire",
"Links": "Links"
"Links": "Links",
"Post": "Post"
}

View File

@ -319,5 +319,6 @@
"Search": "Pesquisa",
"Expand": "Expandir",
"Newswire": "Newswire",
"Links": "Links"
"Links": "Links",
"Post": "Postar"
}

View File

@ -319,5 +319,6 @@
"Search": "Поиск",
"Expand": "Развернуть",
"Newswire": "Лента новостей",
"Links": "Ссылки"
"Links": "Ссылки",
"Post": "После"
}

View File

@ -319,5 +319,6 @@
"Search": "搜索",
"Expand": "扩大",
"Newswire": "新闻专线",
"Links": "链接"
"Links": "链接",
"Post": "发布"
}

View File

@ -6415,8 +6415,8 @@ def htmlTimeline(defaultTimeline: str,
else:
newPostButtonStr = \
'<a href="' + usersPath + '/newdm">' + \
'<button class="button"><span>+' + \
' </span></button></a>\n'
'<button class="button"><span>' + \
translate['Post'] + ' </span></button></a>\n'
elif boxName == 'tlblogs' or boxName == 'tlnews':
if not iconsAsButtons:
newPostButtonStr = \
@ -6429,8 +6429,8 @@ def htmlTimeline(defaultTimeline: str,
else:
newPostButtonStr = \
'<a href="' + usersPath + '/newblog">' + \
'<button class="button"><span>+' + \
' </span></button></a>\n'
'<button class="button"><span>' + \
translate['Post'] + ' </span></button></a>\n'
elif boxName == 'tlevents':
if not iconsAsButtons:
newPostButtonStr = \
@ -6443,8 +6443,8 @@ def htmlTimeline(defaultTimeline: str,
else:
newPostButtonStr = \
'<a href="' + usersPath + '/newevent">' + \
'<button class="button"><span>+' + \
' </span></button></a>\n'
'<button class="button"><span>' + \
translate['Post'] + ' </span></button></a>\n'
else:
if not manuallyApproveFollowers:
if not iconsAsButtons:
@ -6458,8 +6458,8 @@ def htmlTimeline(defaultTimeline: str,
else:
newPostButtonStr = \
'<a href="' + usersPath + '/newpost">' + \
'<button class="button"><span>+' + \
' </span></button></a>\n'
'<button class="button"><span>' + \
translate['Post'] + ' </span></button></a>\n'
else:
if not iconsAsButtons:
newPostButtonStr = \
@ -6472,8 +6472,8 @@ def htmlTimeline(defaultTimeline: str,
else:
newPostButtonStr = \
'<a href="' + usersPath + '/newfollowers">' + \
'<button class="button"><span>+' + \
' </span></button></a>\n'
'<button class="button"><span>' + \
translate['Post'] + ' </span></button></a>\n'
# This creates a link to the profile page when viewed
# in lynx, but should be invisible in a graphical web browser
tlStr += \