From d27e451723c1e0b579eeb8b4c5457e605df8d699 Mon Sep 17 00:00:00 2001 From: nipos Date: Thu, 31 Jan 2019 17:53:40 +0100 Subject: [PATCH] Bugfixes,Pleroma compatibility,translation updates --- README.md | 1 + assets/css/style.css | 6 + assets/js/autocomplete/search.js | 5 +- assets/js/halcyon/halcyonFunctions.js | 12 +- assets/js/halcyon/halcyonSettings.js | 6 +- assets/js/halcyon/halcyonTemplates.js | 71 +++++--- locale/en_US/LC_MESSAGES/messages.mo | Bin 10985 -> 14782 bytes locale/en_US/LC_MESSAGES/messages.po | 210 +++++++++++++++++++++++- locale/gl_ES/LC_MESSAGES/messages.mo | Bin 11326 -> 15452 bytes locale/gl_ES/LC_MESSAGES/messages.po | 210 +++++++++++++++++++++++- locale/it_IT/LC_MESSAGES/messages.mo | Bin 11638 -> 15876 bytes locale/it_IT/LC_MESSAGES/messages.po | 224 ++++++++++++++++++++++++-- settings_profile.php | 18 +-- user.php | 2 +- user_favorite.php | 2 +- user_followers.php | 2 +- user_following.php | 2 +- user_include_replies.php | 2 +- user_only_media.php | 2 +- version.txt | 2 +- 20 files changed, 712 insertions(+), 65 deletions(-) diff --git a/README.md b/README.md index 86ed0d2..bc41a96 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,7 @@ We moved our instances list to a wiki page: https://notabug.org/halcyon-suite/ha or read our new wiki pages to install it manually: https://notabug.org/halcyon-suite/halcyon/wiki ## Blog +- Release of Version 2.2.1 - Many small bugfixes (details see release notes) and improved compatibility to the new Pleroma API,update Galician and Italian translations - [Release of Version 2.2.0 - Privacy-focused media streaming and more](https://nikisoft.myblog.de/nikisoft/art/11644403/Privacy-focused-media-streaming-and-more-The-new-Halcyon-2-2-0) - Release of Version 2.1.6 - Added search suggestions,fixed autocomplete bug,added instance info page,fixed small bug in profile settings,search for posts now supported - Release of Version 2.1.5 - Added support for filter,added possibility to filter all bots,it's now easier to detect bots diff --git a/assets/css/style.css b/assets/css/style.css index dcc98f4..8bcdf78 100644 --- a/assets/css/style.css +++ b/assets/css/style.css @@ -1018,6 +1018,9 @@ font-weight: 600; .timeline .notice_entry .toot_content .toot_header a .username { color: #66757F; } +.timeline .toot_entry .toot_content .toot_article .status_content p:not(:last-child) { +margin-bottom:20px; +} .timeline_footer { padding: 24px; background-color: #fff; @@ -2397,6 +2400,9 @@ color: #fff; .toot_detail.main_status .toot_content .toot_article.content_warning .status_content { display: none; } +.toot_detail.main_status .toot_content .toot_article .status_content p:not(:last-child) { +margin-bottom:30px; +} .toot_detail.main_status .toot_content a { color: #189EFC; } diff --git a/assets/js/autocomplete/search.js b/assets/js/autocomplete/search.js index 4004ef5..bf8a928 100644 --- a/assets/js/autocomplete/search.js +++ b/assets/js/autocomplete/search.js @@ -36,7 +36,10 @@ if(data.accounts[i].display_name == "") data.accounts[i].display_name = data.acc for(var a=0;a"); } -dropdown.append($("
  • ").data("value",getRelativeURL(data.accounts[i].url,data.accounts[i].id)).addClass("account_box").append($("
    ").addClass("icon_box").append($("").attr("src",data.accounts[i].avatar).css("float","left"))) +var account_link; +if(data.accounts[i].acct.indexOf("@") == -1) account_link = "/@"+data.accounts[i].acct+"@"+current_instance+"?mid="+data.accounts[i].id; +else account_link = "/@"+data.accounts[i].acct+"?mid="+data.accounts[i].id; +dropdown.append($("
  • ").data("value",account_link).addClass("account_box").append($("
    ").addClass("icon_box").append($("").attr("src",data.accounts[i].avatar).css("float","left"))) .append($("
    ").addClass("label_box").css("width","unset").append($("").addClass("dn").append($("

    ").html(data.accounts[i].display_name).addClass("emoji_poss"))).append($("").addClass("un").html(data.accounts[i].acct))).click(function() { window.location.href = $(this).data("value"); })); diff --git a/assets/js/halcyon/halcyonFunctions.js b/assets/js/halcyon/halcyonFunctions.js index f2bcc27..4bfccc4 100644 --- a/assets/js/halcyon/halcyonFunctions.js +++ b/assets/js/halcyon/halcyonFunctions.js @@ -13,6 +13,7 @@ if ( array.length >= 4 ) { if ( !options ) { var options = "" }; +if(array[array.length-1] == "") array[array.length-1] = "blog"; if (id) { if (array[array.length-1].substr(0,1) === '@') { const link= '/'+array[array.length-1]+'@'+array[2]+options+'?mid='+id+'&'; @@ -205,6 +206,10 @@ instance: 'https://'+current_instance, api_user_token: authtoken }); api.get("accounts/verify_credentials",function(AccountObj) { +AccountObj.display_name = htmlEscape(AccountObj.display_name); +for(var i=0;i"); +} localStorage.setItem("current_display_name",AccountObj["display_name"]); localStorage.setItem("current_acct",AccountObj["acct"]); localStorage.setItem("current_url",getRelativeURL(AccountObj["url"],AccountObj["id"])); @@ -328,7 +333,7 @@ var is_account_locked = ""; if(current_locked == "true") { is_account_locked = " "; } -$(".js_current_profile_displayname").text(current_display_name); +$(".js_current_profile_displayname").html(current_display_name); $(".js_current_profile_username").html(current_acct+is_account_locked); $(".js_current_profile_link").attr("href", current_url); $(".js_current_header_image").attr("src", current_header); @@ -448,8 +453,11 @@ search.accounts[0].display_name = search.accounts[0].display_name.replace(new Re if(search.accounts[0].display_name.length == 0) { search.accounts[0].display_name = search.accounts[0].username; } +var wtf_account_link; +if(search.accounts[0].acct.indexOf("@") == -1) wtf_account_link = "/@"+search.accounts[0].acct+"@"+current_instance+"?mid="+search.accounts[0].id; +else wtf_account_link = "/@"+search.accounts[0].acct+"?mid="+search.accounts[0].id; $('.what_to_follow_'+id+' > .icon_box img').attr('src',search.accounts[0].avatar); -$('.what_to_follow_'+id+' .label_box > a').attr('href',getRelativeURL(search.accounts[0].url,search.accounts[0].id)); +$('.what_to_follow_'+id+' .label_box > a').attr('href',wtf_account_link); $('.what_to_follow_'+id+' .label_box > a > h3 .dn').addClass("emoji_poss").html(search.accounts[0].display_name); $('.what_to_follow_'+id+' .label_box > a > h3 .un').text('@'+search.accounts[0].username); $('.what_to_follow_'+id+' .label_box > .follow_button').attr('mid',search.accounts[0].id); diff --git a/assets/js/halcyon/halcyonSettings.js b/assets/js/halcyon/halcyonSettings.js index f9259be..71b2b32 100644 --- a/assets/js/halcyon/halcyonSettings.js +++ b/assets/js/halcyon/halcyonSettings.js @@ -380,13 +380,13 @@ $("#setting_play_audio")[0].checked = true; if(localStorage.setting_play_peertube == "true") { $("#setting_play_peertube")[0].checked = true; } -if(localStorage.setting_play_youplay == "true" && $("#settings_play_youplay").length == 1) { +if(localStorage.setting_play_youplay == "true" && $("#setting_play_youplay").length == 1) { $("#setting_play_youplay")[0].checked = true; } -if(localStorage.setting_play_invidious == "true" && $("#settings_play_invidious").length == 1) { +if(localStorage.setting_play_invidious == "true" && $("#setting_play_invidious").length == 1) { $("#setting_play_invidious")[0].checked = true; } -if(localStorage.setting_play_vimeo == "true" && $("#settings_play_vimeo").length == 1) { +if(localStorage.setting_play_vimeo == "true" && $("#setting_play_vimeo").length == 1) { $("#setting_play_vimeo")[0].checked = true; } }); diff --git a/assets/js/halcyon/halcyonTemplates.js b/assets/js/halcyon/halcyonTemplates.js index 512a062..6a12f67 100644 --- a/assets/js/halcyon/halcyonTemplates.js +++ b/assets/js/halcyon/halcyonTemplates.js @@ -91,8 +91,10 @@ writtenby.username = status.account.username; writtenby.url = status.account.url; writtenby.acct = status.account.acct; status.mentions.push(writtenby); -const status_account_link= getRelativeURL(status.account.url, status.account.id), -status_datetime= getRelativeDatetime(Date.now(), getConversionedDate(null, status.created_at)), +var status_account_link; +if(status.account.acct.indexOf("@") == -1) status_account_link = "/@"+status.account.acct+"@"+current_instance+"?mid="+status.account.id; +else status_account_link = "/@"+status.account.acct+"?mid="+status.account.id; +const status_datetime= getRelativeDatetime(Date.now(), getConversionedDate(null, status.created_at)), status_attr_datetime = getConversionedDate(null, status.created_at); let alart_text= "", article_option= "", @@ -242,9 +244,12 @@ writtenby.url = status.reblog.account.url; writtenby.acct = status.reblog.account.acct; status.reblog.mentions.push(writtenby); const status_datetime= getRelativeDatetime(Date.now(), getConversionedDate(null, status.reblog.created_at)), -status_attr_datetime = getConversionedDate(null, status.reblog.created_at), -status_reblog_account_link = getRelativeURL(status.reblog.account.url, status.reblog.account.id), -status_account_link= getRelativeURL(status.account.url, status.account.id); +status_attr_datetime = getConversionedDate(null, status.reblog.created_at); +var status_reblog_account_link,status_account_link; +if(status.reblog.account.acct.indexOf("@") == -1) status_reblog_account_link = "/@"+status.reblog.account.acct+"@"+current_instance+"?mid="+status.reblog.account.id; +else status_reblog_account_link = "/@"+status.reblog.account.acct+"?mid="+status.reblog.account.id; +if(status.account.acct.indexOf("@") == -1) status_account_link = "/@"+status.account.acct+"@"+current_instance+"?mid="+status.account.id; +else status_account_link = "/@"+status.account.acct+"?mid="+status.account.id; let alart_text= "", article_option= "", toot_reblogs_count= "", @@ -388,9 +393,11 @@ writtenby.username = status.account.username; writtenby.url = status.account.url; writtenby.acct = status.account.acct; status.mentions.push(writtenby); +var status_account_link; +if(status.account.acct.indexOf("@") == -1) status_account_link = "/@"+status.account.acct+"@"+current_instance+"?mid="+status.account.id; +else status_account_link = "/@"+status.account.acct+"?mid="+status.account.id; const status_datetime= getRelativeDatetime(Date.now(), getConversionedDate(null, status.created_at)), -status_attr_datetime = getConversionedDate(null, status.created_at), -status_account_link= getRelativeURL(status.account.url, status.account.id); +status_attr_datetime = getConversionedDate(null, status.created_at); let alart_text= "", article_option= "", toot_reblogs_count= "", @@ -510,7 +517,9 @@ html.find(".toot_article").append(media_views); return html } function notifications_template(NotificationObj) { -const notice_author_link = getRelativeURL(NotificationObj.account.url, NotificationObj.account.id); +var notice_author_link; +if(NotificationObj.account.acct.indexOf("@") == -1) notice_author_link = "/@"+NotificationObj.account.acct+"@"+current_instance+"?mid="+NotificationObj.account.id; +else notice_author_link = "/@"+NotificationObj.account.acct+"?mid="+NotificationObj.account.id; if(NotificationObj.account.display_name.length == 0) { NotificationObj.account.display_name = NotificationObj.account.username; } @@ -519,8 +528,10 @@ for(i=0;i"); } if ( NotificationObj.type === 'favourite' | NotificationObj.type === 'reblog' ) { -const toot_author_link = getRelativeURL(NotificationObj.status.account.url, NotificationObj.status.account.id), -toot_datetime= getRelativeDatetime(Date.now(), getConversionedDate(null, NotificationObj.status.created_at)), +var toot_author_link; +if(NotificationObj.status.account.acct.indexOf("@") == -1) toot_author_link = "/@"+NotificationObj.status.account.acct+"@"+current_instance+"?mid="+NotificationObj.status.account.id; +else toot_author_link = "/@"+NotificationObj.status.account.acct+"?mid="+NotificationObj.status.account.id; +const toot_datetime= getRelativeDatetime(Date.now(), getConversionedDate(null, NotificationObj.status.created_at)), toot_attr_datetime = getConversionedDate(null, NotificationObj.status.created_at); if( NotificationObj.type=='favourite' ){ for(i=0;ifV*K*46H1cdvvX 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 gmrr=!8&>Z=v*As?`A*+_r, 2018. #zanata +# Niklas Poslovski , 2019. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-09-30 09:53+0000\n" +"POT-Creation-Date: 2019-01-19 16:33+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2018-09-30 10:58+0000\n" +"PO-Revision-Date: 2019-01-19 04:39+0000\n" "Last-Translator: Niklas Poslovski \n" "Language-Team: English (United States)\n" "Language: en\n" @@ -32,11 +33,14 @@ msgstr "Korean" msgid "Language_pl_PL" msgstr "Polish" +msgid "Language_gl_ES" +msgstr "Galician" + msgid "Language_pt_BR" msgstr "Portuguese (Brazil)" -msgid "Language_gl_ES" -msgstr "Galician" +msgid "Language_it_IT" +msgstr "Italian" msgid "Sensitive content" msgstr "Sensitive content" @@ -650,3 +654,201 @@ msgstr "Prompt" msgid "Ok" msgstr "Ok" +msgid "Autocomplete enabled" +msgstr "Autocomplete enabled" + +msgid "Autocomplete disabled" +msgstr "Autocomplete disabled" + +msgid "Changed custom profile field" +msgstr "Changed custom profile field" + +msgid "Notifications when tab is closed enabled" +msgstr "Notifications when tab is closed enabled" + +msgid "Notifications when tab is closed disabled" +msgstr "Notifications when tab is closed disabled" + +msgid "Toots of bots shown" +msgstr "Toots of bots shown" + +msgid "Toots of bots hidden" +msgstr "Toots of bots hidden" + +msgid "Filter created" +msgstr "Filter created" + +msgid "Gif animations enabled" +msgstr "Gif animations enabled" + +msgid "Gif animations disabled" +msgstr "Gif animations disabled" + +msgid "Video player enabled" +msgstr "Video player enabled" + +msgid "Video player disabled" +msgstr "Video player disabled" + +msgid "Audio player enabled" +msgstr "Audio player enabled" + +msgid "Audio player disabled" +msgstr "Audio player disabled" + +msgid "PeerTube embeds enabled" +msgstr "PeerTube embeds enabled" + +msgid "PeerTube embeds disabled" +msgstr "PeerTube embeds disabled" + +msgid "YouPlay embeds enabled" +msgstr "YouPlay embeds enabled" + +msgid "YouPlay embeds disabled" +msgstr "YouPlay embeds disabled" + +msgid "Invidio.us embeds enabled" +msgstr "Invidio.us embeds enabled" + +msgid "Invidio.us embeds disabled" +msgstr "Invidio.us embeds disabled" + +msgid "Vimeo embeds enabled" +msgstr "Vimeo embeds enabled" + +msgid "Vimeo embeds disabled" +msgstr "Vimeo embeds disabled" + +msgid "Thread" +msgstr "Thread" + +msgid "Never" +msgstr "Never" + +msgid "Don't change" +msgstr "Don't change" + +msgid "Filter updated" +msgstr "Filter updated" + +msgid "Are you sure that you want to delete this filter?" +msgstr "Are you sure that you want to delete this filter?" + +msgid "Your filter has been deleted" +msgstr "Your filter has been deleted" + +msgid "Toot to" +msgstr "Toot to" + +msgid "Administrated by" +msgstr "Administrated by" + +msgid "Users" +msgstr "Users" + +msgid "Connections" +msgstr "Connections" + +msgid "Notifications when tab closed" +msgstr "Notifications when tab closed" + +msgid "Filter settings" +msgstr "Filter settings" + +msgid "Show toots of bots" +msgstr "Show toots of bots" + +msgid "Add new filter" +msgstr "Add new filter" + +msgid "Create a filter" +msgstr "Create a filter" + +msgid "Word or phrase to filter" +msgstr "Word or phrase to filter" + +msgid "Filter in the following timelines" +msgstr "Filter in the following timelines" + +msgid "Expires in" +msgstr "Expires in" + +msgid "Autocomplete in compose field" +msgstr "Autocomplete in compose field" + +msgid "Media settings" +msgstr "Media settings" + +msgid "Play animated GIFs" +msgstr "Play animated GIFs" + +msgid "Enable video player" +msgstr "Enable video player" + +msgid "Enable audio player" +msgstr "Enable audio player" + +msgid "Embed PeerTube videos" +msgstr "Embed PeerTube videos" + +msgid "Embed YouTube using YouPlay" +msgstr "Embed YouTube using YouPlay" + +msgid "Embed YouTube using Invidio.us" +msgstr "Embed YouTube using Invidio.us" + +msgid "Embed Vimeo using YouPlay" +msgstr "Embed Vimeo using YouPlay" + +msgid "Custom profile fields" +msgstr "Custom profile fields" + +msgid "Name" +msgstr "Name" + +msgid "Value" +msgstr "Value" + +msgid "" +"To verify that the links in your custom fields really belong to you, you can " +"add the link below to your website. The link text can be changed to whatever " +"you want." +msgstr "" +"To verify that the links in your custom fields really belong to you, you can " +"add the link below to your website. The link text can be changed to whatever " +"you want." + +msgid "Message" +msgstr "Message" + +msgid "Filter" +msgstr "Filter" + +msgid "minutes" +msgstr "minutes" + +msgid "hour" +msgstr "hour" + +msgid "hours" +msgstr "hours" + +msgid "day" +msgstr "day" + +msgid "week" +msgstr "week" + +msgid "Filter posts irreversible" +msgstr "Filter posts irreversible" + +msgid "Whole word" +msgstr "Whole word" + +msgid "FILTERS" +msgstr "FILTERS" + +msgid "MEDIA" +msgstr "MEDIA" + diff --git a/locale/gl_ES/LC_MESSAGES/messages.mo b/locale/gl_ES/LC_MESSAGES/messages.mo index 059eb453812e246a87f2f82e744b373934b84a50..9d21a47bdae5d97b313f615faa4dd2c1be714152 100644 GIT binary patch literal 15452 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 delta 3830 zcmYM#3s61iA_|Hi!cJ$TtN`)T+KTr zHPt0GRmMgpvDP%xrqEhn?HC_5GuFm2De1(LWSVL0JCB-aO(*U5hdWc}dOv&4p56Wb z|GVdMz3&(IhsWcio-_RW4gY8Je=u5C#>D#m?=+e|t|#LxoQi4qCCtGYSc;KYhj-vT zn1*ZI{cXs{^z)T~PhpfXVKYQS0}tZ@dIfyF^e15F&=LsYn!RlZx2YqSgvzW6D~qMw;1`DReULc z^{C7qM)g0A3ix?U#35ARui{KRgK4a9uF;r-pP(X}L6|g6GEOY)T!dPv8a3h9oNcHr z+KDmvlye_y!6Daw6cx~j>pzZREqIm&Nt;WqV+@t)`^d-qi7zd93pL?%qDaA1Jbb@;GOtK)LAhJ)L)HgHckt~qDq;HDt$I8lVa3!Rj5p=QJFQM&dM58 z-~mj=cJy#JrsJ^de+@OyMb!AqVHzsgRaB;LBOmiVUj%7xqAD|$`fH(hRA3%zEBvVE zD^L^Gqn>L(1+>B0f|IyzLyg;v8W--Rp~E(S3gjRv<6%^$$54TtLJd5RMfe8hU?g?T z#eCGbMpPvqM2+8!n)e&dN1flqOuhemX=uPGD)Muv5?w_tJcgR!J=BCBI{$^LObi<= z6P$BU3FRQ?&6J@ku>v(;J*rZxF+uPD*J&`938G5-IBLOtsEogh3g{*0%b3OWtJsfY zsJEekjn~ATn2I4(AbU{b51~r_A}WxdW1Qaqvov(*uDJ)sou4?P`E^ohQ&1JkLbifL zUk&Z`dFK^W1>Q!@a|89<=k9(aKdVe(5>Q*S0JR0hsORhEP=9r-<%UYM9&>Ob>QoP) zDm04P^WUMK`!8zZNb0Gxl7^~G7HV&+P+PhjmGLT6g&sr&(1m*LkuVLFXaF_g3#iCW zq27ussEL1%D%q!~ff4+w=(%aAw_*-*T+9O0R@EZgYno93@4!3^qvrVmQX~^T?mFJY zY;JskDq)s)J7Pa7gC(eeD^Uxr#S9Fg0vtqb%`sHwqo_cC>AZyMzlsXz9i%^O-ld@u z-auvi57fXfP_NAtR?!~&P#MiZ1yqU@!z{y#*o?|3k6#rnRO`GKHUC<7-GrKdGp6eO z@1~)MzU>|ubk~QR!>9?4IA1|kXcRTkY3Bvkf5rJ0YOk-O&dx{3$0W_Y{WqZkqgmfP zKtq{sKxNvB%3vF+BD+vOM9-oYJc!!+7g6Jmqqg7-M&dQ(e3~)L!<(3m>6~Qs*P;@- z8z=t$f0c$Nz8`g%noyC4P!m6a3Ty~<27ZVN?4-MX9aZ`aPXTxuMsi1Sex1D#Ciyf{myF&8SLr;sV@`oL6%cbMX@DxsOqY^gpP16G>n5 zWup@HJ4>^vzan44jfwXYC*Du@z$2&y2i*038hD{6~wp(^U* zM@1D#L!F&W=ln1YO<06_Z&#uMX~W6bkD7RwyWWG*To0l$K8QQ6TIdEU^3PCP6T=D8MCmvcm!n?4dQ|3XQD-6G>_*M= zC@QhNsJ|&MqxSwa)N6YIYxVwrKtp?&Ki`>;mZt82txI^uew0vYOA{;YcM{LV*0i*Dds{-m*7lBo{dnfWb`~*jWu>%(qel@a`{Loxh%qt&$`bpz4O<0W=g+3lCs$TE#(1w zJavUFoSieWdG^@|yCm%$dm%k*#`a)O$O{FwbZj?`!C?1RoA32bSse&%Z4Y+Y_q^FQ zC*vV|G~>7SmCRlC?zx-nPv@5TIs;wZ^aolzhTGVAo-Ld=7F+HwsPGpTcm)-eB{nf@ zo3GqoSmZA(_6mwBi_7i)tUuf5vgg{@v)k;toOT

    )9Q-hiy&Xayyu}bR>Fybc9dY zHif(`fe`uH%lXTan!Ja50$twLz^0z|&_udqTWuTfDz%CJl965htr7Ms3rp;dg`e7< zf&+Gb;Yz!^u+xT%R@mvqStIqu5tD37$seq*tiUcWn`ysQHtbC#cy6T2(C~tx_P+M6 urjCgVxAJ)TI@?z9GrO_!>3vnrc2iY}lHN$t=MIO0T}}3MRfhebs_%at>dUzR diff --git a/locale/gl_ES/LC_MESSAGES/messages.po b/locale/gl_ES/LC_MESSAGES/messages.po index b246b0b..22d7632 100644 --- a/locale/gl_ES/LC_MESSAGES/messages.po +++ b/locale/gl_ES/LC_MESSAGES/messages.po @@ -1,13 +1,14 @@ # Niklas Poslovski , 2018. #zanata +# Niklas Poslovski , 2019. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-09-30 09:53+0000\n" +"POT-Creation-Date: 2019-01-19 16:33+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2018-12-13 02:38+0000\n" +"PO-Revision-Date: 2019-01-31 04:41+0000\n" "Last-Translator: Xosé M. \n" "Language-Team: Galician\n" "Language: gl\n" @@ -32,11 +33,14 @@ msgstr "Korean" msgid "Language_pl_PL" msgstr "Polish" +msgid "Language_gl_ES" +msgstr "Galician" + msgid "Language_pt_BR" msgstr "Portuguese (Brazil)" -msgid "Language_gl_ES" -msgstr "Galician" +msgid "Language_it_IT" +msgstr "Italian" msgid "Sensitive content" msgstr "Contido sensible" @@ -649,3 +653,201 @@ msgstr "Avisar" msgid "Ok" msgstr "Ok" +msgid "Autocomplete enabled" +msgstr "Autocompletado activado" + +msgid "Autocomplete disabled" +msgstr "Autocompletado desactivado" + +msgid "Changed custom profile field" +msgstr "Cambiado o campo de perfil personalizado" + +msgid "Notifications when tab is closed enabled" +msgstr "Notificacións activadas cando a lapela está pechada" + +msgid "Notifications when tab is closed disabled" +msgstr "Notificacións desactivadas cando a lapela está pechada" + +msgid "Toots of bots shown" +msgstr "Móstranse os toots dos bots" + +msgid "Toots of bots hidden" +msgstr "Toots dos bots ocultos" + +msgid "Filter created" +msgstr "Filtro creado" + +msgid "Gif animations enabled" +msgstr "Animacións Gif activadas" + +msgid "Gif animations disabled" +msgstr "Animacións Gif desactivadas" + +msgid "Video player enabled" +msgstr "Reprodutor de vídeo activado" + +msgid "Video player disabled" +msgstr "Reprodutor de vídeo desactivado" + +msgid "Audio player enabled" +msgstr "Reprodutor de audio activado" + +msgid "Audio player disabled" +msgstr "Reprodutor de audio desactivado" + +msgid "PeerTube embeds enabled" +msgstr "Incrustados de Peertube activados" + +msgid "PeerTube embeds disabled" +msgstr "Incrustados de Peertube desactivados" + +msgid "YouPlay embeds enabled" +msgstr "Incrustados de YouPlay activados" + +msgid "YouPlay embeds disabled" +msgstr "Incrustados de YouPlay desactivados" + +msgid "Invidio.us embeds enabled" +msgstr "Incrustados de Invidio.us activados" + +msgid "Invidio.us embeds disabled" +msgstr "Incrustados de Invidio.us desactivados" + +msgid "Vimeo embeds enabled" +msgstr "Incrustados de Vimeo activados" + +msgid "Vimeo embeds disabled" +msgstr "Incrustados de Vimeo desactivados" + +msgid "Thread" +msgstr "Conversa" + +msgid "Never" +msgstr "Nunca" + +msgid "Don't change" +msgstr "Non cambiar" + +msgid "Filter updated" +msgstr "Filtro actualizado" + +msgid "Are you sure that you want to delete this filter?" +msgstr "Está seguro de querer eliminar este filtro?" + +msgid "Your filter has been deleted" +msgstr "Eliminouse o filtro" + +msgid "Toot to" +msgstr "Toot a" + +msgid "Administrated by" +msgstr "Administrada por" + +msgid "Users" +msgstr "Usuarias" + +msgid "Connections" +msgstr "Conexións" + +msgid "Notifications when tab closed" +msgstr "Notificacións coa lapela pechada" + +msgid "Filter settings" +msgstr "Axustes do filtro" + +msgid "Show toots of bots" +msgstr "Mostrar toots de bots" + +msgid "Add new filter" +msgstr "Engadir novo filtro" + +msgid "Create a filter" +msgstr "Crear un filtro" + +msgid "Word or phrase to filter" +msgstr "Palabra ou frase a filtrar" + +msgid "Filter in the following timelines" +msgstr "Filtrar nas seguintes liñas temporais" + +msgid "Expires in" +msgstr "Caduca en" + +msgid "Autocomplete in compose field" +msgstr "Autocompletado en cadro de edición" + +msgid "Media settings" +msgstr "Axustes dos medios" + +msgid "Play animated GIFs" +msgstr "Reproducir GIFs animados" + +msgid "Enable video player" +msgstr "Activar reprodutor de vídeo" + +msgid "Enable audio player" +msgstr "Activar reprodutor de audio" + +msgid "Embed PeerTube videos" +msgstr "Incrustar vídeos PeerTube" + +msgid "Embed YouTube using YouPlay" +msgstr "Incrustar YouTube utilizando YouPlay" + +msgid "Embed YouTube using Invidio.us" +msgstr "Incrustar YouTube utilizando Invidio.us" + +msgid "Embed Vimeo using YouPlay" +msgstr "Incrustar Vimeo utilizando YouPlay" + +msgid "Custom profile fields" +msgstr "Campos de perfil personalizados" + +msgid "Name" +msgstr "Nome" + +msgid "Value" +msgstr "Valor" + +msgid "" +"To verify that the links in your custom fields really belong to you, you can " +"add the link below to your website. The link text can be changed to whatever " +"you want." +msgstr "" +"Para verificar que as ligazóns dos campos personalizados realmente lle " +"pertencen, pode engadir a ligazón inferior ao seu sitio web. O texto da " +"ligazón pode cambialo como vostede desexe." + +msgid "Message" +msgstr "Mensaxe" + +msgid "Filter" +msgstr "Filtro" + +msgid "minutes" +msgstr "minutos" + +msgid "hour" +msgstr "hora" + +msgid "hours" +msgstr "horas" + +msgid "day" +msgstr "día" + +msgid "week" +msgstr "semana" + +msgid "Filter posts irreversible" +msgstr "Filtrado de publicacións non reversible" + +msgid "Whole word" +msgstr "Palabra completa" + +msgid "FILTERS" +msgstr "FILTROS" + +msgid "MEDIA" +msgstr "MEDIOS" + diff --git a/locale/it_IT/LC_MESSAGES/messages.mo b/locale/it_IT/LC_MESSAGES/messages.mo index 58d31a655246cce0bf8b53e0da33ebe3eb89d6fd..8aa9939856bd4283fdb15b06052f2d970bf4fa59 100644 GIT binary patch literal 15876 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 WiZWI<(LvTqU;Pg&Hscr#n*Rq;P^p&y delta 3943 zcmYM$3vg7`9mnyLfFVFAc|k}5$>os;B#}HI;i(Nwh=2@C3@|7K7qUrqNcN_?36xaW zLZi}Rb>tLELk0$>2dvFXUV;+73i!c?daS+zy za9oUexYFIpUm3Uq2OASJeKa)iAl{3IaVq}aIha+-xSodUw+^*HGb+{yrr~B( zfICqEK8r)J*F8Uk3iK7!xHCAC_02mp#&F{=n2vXlwN3KK_<+%v!gUd9!fB{}bC8c& z%9jFIi^}ZVsOOKP0^W<6*oO-I7>>f%F^~1lB^u-KHY&1I!lY@kaA0BQG}J=1s0kl( zwxYIZ3l7B{&RwVl``q)RsDS$2^Ai};f~RSawE2~La2b{9RpeuC@TCR6KutK3C~`0t zd$Ago(FN3e*HPm?M)ug;Ma}c2yPraNbk;J{slOts;D#cfj=H|zIUlu`^{4=sIoCSF z&MnTToco+F;AqC3LIwCPX5-&cXT@Yte>IZWI4zKZDrGLJ^o6KQs!;uAqcW*QW!8W? zD=Sff2Qdpn=;1cZ$3yPM=dZHmFW`qd@T}_X-6g2gQ`F;>L+cVar$;J`psMm@;K9N_}}wqOOS|7z50**=c?YtMef4V7pY zYQP@nn>dB*kFgB1sh|4QqcT{GT4)t2fOgc`iJ<~~!ubpmo7wAp6_w~kbyP-wLO$jO zUu=s>CcJ@?qDo$cnsA}B0eOAQBd7qjqQ>t+j*U5nD*dlf0bfA{@Hf;Je2tnvmg2<+ z=Arg@E-JEBs8R(`9V4jg9@LiYMg?#b6~H;vYxq~x_#3E_e}X#PpP`;7j*kbFf+Q3( zsWj9v8x>i8{DCQTPDfSXK2(N{sIw47Wfa5bu@BiLvw*17zX=scH)@NwqXK`@-S5RB zz5j=3s6@X(Mfy8;{l4=9)Sg~-{sT4fzfoKAnbS;+_Z#X=MO7vXi?9UswmpOlG2g*^ zSl{fUp#=`2&cadW3FleVVS5kN?;2`LZlVJDFDm1~%svQnkXt4Xb!g|I4snNjz7JLL z0~k{VhiNGDmrz@93U!FiI<5BhdQ)VQ2{-G+UsSgfF5?P!9=dt zq1Fi&P=7@p;f6BYftp~Cb3ba~=TLih95wI^R^vsi!l8xyw+!c^#z#=6zZ(_UGnj-& zQ3=0{>UXk``qMUV@THPocYcoQIJ_ucnM~Axd>r`41+}*|s7x25DzV(zys^kw^BU^4x`xS^z)4c3!%!1syX!*K7EVWP*?d&# zm!bk_MeY4oRG{1N0lohRX|RpvChD}Nmc(C^`%o2G@23dxrO@Yp!tNPex76+SKZMbZ_?C z+WbvsLG6mA%NrIp*4Z_q=h)#{Gx{T0H3|00nB{g}_HXT|oNoJE&K&!%oK^Nj?m}BJ zwy1x@*wYF2{=7fiGx-InoBghc7YTN>Z8nX*-x;+f-licdf{|#*58DsDv9@UZx9rjJ zf3QEF@IAX|VvBusV$F#5V7Qa#!6uL4Hf54$D<)k|nNe0gv#hGzE1x-Qy3H*3ZgNGH zS6(@*s>c4L;4AxLVU4|AxYhO*Mbm0q{CLiRmX?qo2?y-k#r^icMrwrqC)`Lc}(>*|AHvoN|o z66&Nt0rOy2i>VKFnFmARmac%Q4@TMpVN(}wX$wVLO?{v(v_8a*MS+e$I2a9@#eO8n z^)i3p`7%G!+11j;1Fv{qB+wmdn`~, 2018. #zanata # Niklas Poslovski , 2019. #zanata msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-09-30 09:53+0000\n" +"POT-Creation-Date: 2019-01-19 16:33+0000\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2019-01-13 02:37+0000\n" +"PO-Revision-Date: 2019-01-31 04:45+0000\n" "Last-Translator: Sylke Vicious \n" "Language-Team: Italian\n" "Language: it\n" @@ -19,25 +18,28 @@ msgid "Language" msgstr "Lingua" msgid "Language_en_US" -msgstr "English" +msgstr "Inglese" msgid "Language_de_DE" -msgstr "German" +msgstr "Tedesco" msgid "Language_ja_JP" -msgstr "Japanese" +msgstr "Giapponese" msgid "Language_ko_KR" -msgstr "Korean" +msgstr "Coreano" msgid "Language_pl_PL" -msgstr "Polish" - -msgid "Language_pt_BR" -msgstr "Portuguese (Brazil)" +msgstr "Polacco" msgid "Language_gl_ES" -msgstr "Galician" +msgstr "Galiziano" + +msgid "Language_pt_BR" +msgstr "Portoghese (Brasile)" + +msgid "Language_it_IT" +msgstr "Italiano" msgid "Sensitive content" msgstr "Contenuto sensibile" @@ -650,3 +652,201 @@ msgstr "Chiedi" msgid "Ok" msgstr "Ok" +msgid "Autocomplete enabled" +msgstr "Autocompletamento abilitato" + +msgid "Autocomplete disabled" +msgstr "Autocompletamento disabilitato" + +msgid "Changed custom profile field" +msgstr "Campi profilo personalizzati modificati" + +msgid "Notifications when tab is closed enabled" +msgstr "Notifiche quando la tab è chiusa abilitate" + +msgid "Notifications when tab is closed disabled" +msgstr "Notifiche quando la tab è chiusa disabilitate" + +msgid "Toots of bots shown" +msgstr "Toot dei bot mostrati" + +msgid "Toots of bots hidden" +msgstr "Toot dei bot nascosti" + +msgid "Filter created" +msgstr "Filtri creati" + +msgid "Gif animations enabled" +msgstr "Animazioni gif abilitate" + +msgid "Gif animations disabled" +msgstr "Animazioni gif disabilitate" + +msgid "Video player enabled" +msgstr "Riproduttore video abilitato" + +msgid "Video player disabled" +msgstr "Riproduttore video disabilitato" + +msgid "Audio player enabled" +msgstr "Riproduttore audio abilitato" + +msgid "Audio player disabled" +msgstr "Riproduttore audio disabilitato" + +msgid "PeerTube embeds enabled" +msgstr "Contenuti incorporati da PeerTube abilitati" + +msgid "PeerTube embeds disabled" +msgstr "Contenuti incorporati da PeerTube disabilitati" + +msgid "YouPlay embeds enabled" +msgstr "Contenuti incorporati da YouPlay abilitati" + +msgid "YouPlay embeds disabled" +msgstr "Contenuti incorporati da YouPlay disabilitati" + +msgid "Invidio.us embeds enabled" +msgstr "Contenuti incorporati da Invidio.us abilitati" + +msgid "Invidio.us embeds disabled" +msgstr "Contenuti incorporati da Invidio.us disabilitati" + +msgid "Vimeo embeds enabled" +msgstr "Contenuti incorporati da Vimeo abilitati" + +msgid "Vimeo embeds disabled" +msgstr "Contenuti incorporati da Vimeo disabilitati" + +msgid "Thread" +msgstr "Conversazione" + +msgid "Never" +msgstr "Mai" + +msgid "Don't change" +msgstr "Non cambiare" + +msgid "Filter updated" +msgstr "Filtro aggiornato" + +msgid "Are you sure that you want to delete this filter?" +msgstr "Sei sicuro di vole eliminare questo filtro?" + +msgid "Your filter has been deleted" +msgstr "Il tuo filtro è stato eliminato" + +msgid "Toot to" +msgstr "Toot su" + +msgid "Administrated by" +msgstr "Amministrato da" + +msgid "Users" +msgstr "Utenti" + +msgid "Connections" +msgstr "Connessioni" + +msgid "Notifications when tab closed" +msgstr "Notifiche quando la tab è chiusa" + +msgid "Filter settings" +msgstr "Impostazioni dei filtri" + +msgid "Show toots of bots" +msgstr "Mostra toot dei bot" + +msgid "Add new filter" +msgstr "Aggiungi nuovo filtro" + +msgid "Create a filter" +msgstr "Crea un filtro" + +msgid "Word or phrase to filter" +msgstr "Parola o frase da filtrare" + +msgid "Filter in the following timelines" +msgstr "Filtra nelle timeline seguenti" + +msgid "Expires in" +msgstr "Scade tra" + +msgid "Autocomplete in compose field" +msgstr "Autocompletamento nel campo di composizione" + +msgid "Media settings" +msgstr "Impostazioni dei media" + +msgid "Play animated GIFs" +msgstr "Riproduci animazioni GIF" + +msgid "Enable video player" +msgstr "Abilita riproduttore video" + +msgid "Enable audio player" +msgstr "Abilita riproduttore audio" + +msgid "Embed PeerTube videos" +msgstr "Incorpora video di PeerTube" + +msgid "Embed YouTube using YouPlay" +msgstr "Incorpora video di YouTube utilizzando YouPlay" + +msgid "Embed YouTube using Invidio.us" +msgstr "Incorpora video di YouTube utilizzando Invidio.us" + +msgid "Embed Vimeo using YouPlay" +msgstr "Incorpora video di Vimeo utilizzando YouPlay" + +msgid "Custom profile fields" +msgstr "Campi profilo personalizzati" + +msgid "Name" +msgstr "Nome" + +msgid "Value" +msgstr "Valore" + +msgid "" +"To verify that the links in your custom fields really belong to you, you can " +"add the link below to your website. The link text can be changed to whatever " +"you want." +msgstr "" +"Per verificare che i collegamenti nei campi personalizzati siano veramente " +"in tuo possesso, puoi aggiungere il link sottostante al tuo sito web. Il " +"testo del link può essere cambiato a tuo piacimento." + +msgid "Message" +msgstr "Messaggio" + +msgid "Filter" +msgstr "Filtro" + +msgid "minutes" +msgstr "minuti" + +msgid "hour" +msgstr "ora" + +msgid "hours" +msgstr "ore" + +msgid "day" +msgstr "giorno" + +msgid "week" +msgstr "settimana" + +msgid "Filter posts irreversible" +msgstr "Filtra post irreversibilmente" + +msgid "Whole word" +msgstr "Parola intera" + +msgid "FILTERS" +msgstr "FILTRI" + +msgid "MEDIA" +msgstr "MEDIA" + diff --git a/settings_profile.php b/settings_profile.php index 838b95f..bf4d688 100644 --- a/settings_profile.php +++ b/settings_profile.php @@ -61,31 +61,31 @@

    - +
    - +
    - +
    - +
    - +
    - +
    - +
    - +
    -

    To verify that the links in your custom fields really belong to you, you can add the link below to your website. The link text can be changed to whatever you want.

    +

    - diff --git a/user.php b/user.php index 4d2c5f3..2ac369b 100644 --- a/user.php +++ b/user.php @@ -80,7 +80,7 @@ $("#js-profile_nav_followers > a").attr('href', location.pathname+'/followers'+l $("#js-profile_nav_favourites > a").attr('href', location.pathname+'/favourites'+location.search); $(function() { -const account_id = ; +const account_id = ""; api.get('accounts/'+account_id, function(userprofile) { if(userprofile !== null) { a").attr('href', 'followers'+location.search); $("#js-profile_nav_favourites > a").attr('href', 'favourites'+location.search); $(function() { -const account_id = ; +const account_id = ""; api.get('accounts/'+account_id, function(AccountObj) { if ( AccountObj !== null ) { setAccount(AccountObj); diff --git a/user_followers.php b/user_followers.php index 640e712..b6e0274 100644 --- a/user_followers.php +++ b/user_followers.php @@ -48,7 +48,7 @@ $("#js-profile_nav_followers > a").attr('href', 'followers'+location.search); $("#js-profile_nav_favourites > a").attr('href','favourites'+location.search); $(function() { -const account_id = ; +const account_id = ""; api.get('accounts/'+account_id, function(AccountObj) { if ( AccountObj !== null ) { setAccount(AccountObj); diff --git a/user_following.php b/user_following.php index b261273..6cbafa8 100644 --- a/user_following.php +++ b/user_following.php @@ -48,7 +48,7 @@ $("#js-profile_nav_followers > a").attr('href', 'followers'+location.search); $("#js-profile_nav_favourites > a").attr('href','favourites'+location.search); $(function() { -const account_id = ; +const account_id = ""; api.get('accounts/'+account_id, function(AccountObj) { if ( AccountObj !== null ) { setAccount(AccountObj); diff --git a/user_include_replies.php b/user_include_replies.php index 08e9619..dda4803 100644 --- a/user_include_replies.php +++ b/user_include_replies.php @@ -79,7 +79,7 @@ $("#js-profile_nav_followers > a").attr('href', './followers'+location.search); $("#js-profile_nav_favourites > a").attr('href', './favourites'+location.search); $(function() { -const account_id = ; +const account_id = ""; api.get('accounts/'+account_id, function(AccountObj) { if ( AccountObj !== null ) { setAccount(AccountObj); diff --git a/user_only_media.php b/user_only_media.php index c55934c..cf06010 100644 --- a/user_only_media.php +++ b/user_only_media.php @@ -79,7 +79,7 @@ $("#js-profile_nav_followers > a").attr('href', './followers'+location.search); $("#js-profile_nav_favourites > a").attr('href', './favourites'+location.search); $(function() { -const account_id = ; +const account_id = ""; api.get('accounts/'+account_id, function(AccountObj) { if ( AccountObj !== null ) { setAccount(AccountObj); diff --git a/version.txt b/version.txt index ccbccc3..c043eea 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.2.0 +2.2.1