From 41daa86934941edbf6a883f1d0c9428dc8b81461 Mon Sep 17 00:00:00 2001 From: nipos Date: Sun, 19 May 2019 17:59:49 +0200 Subject: [PATCH] Add block and mute management,add management for follow requests,add Catalan translation --- .htaccess | 3 + Caddyfile | 12 + README.md | 1 + assets/js/halcyon/halcyonSettings.js | 181 +++++- docker/locale/locale.gen | 1 + locale/ca_ES/LC_MESSAGES/messages.mo | Bin 0 -> 17639 bytes locale/ca_ES/LC_MESSAGES/messages.po | 930 +++++++++++++++++++++++++++ nginx.conf | 4 + settings_accounts.php | 19 + version.txt | 2 +- widgets/settings_header.php | 18 + 11 files changed, 1169 insertions(+), 2 deletions(-) create mode 100644 locale/ca_ES/LC_MESSAGES/messages.mo create mode 100644 locale/ca_ES/LC_MESSAGES/messages.po create mode 100644 settings_accounts.php diff --git a/.htaccess b/.htaccess index 1a91e97..94bc68c 100644 --- a/.htaccess +++ b/.htaccess @@ -58,6 +58,9 @@ RewriteRule ^settings/profile/?$ settings_profile\.php [NC,L] RewriteRule ^settings/appearance/?$ settings_appearance\.php [NC,L] RewriteRule ^settings/filters/?$ settings_filters\.php [NC,L] RewriteRule ^settings/media/?$ settings_media\.php [NC,L] +RewriteRule ^settings/followers/?$ settings_accounts\.php [NC,L] +RewriteRule ^settings/mutes/?$ settings_accounts\.php [NC,L] +RewriteRule ^settings/blocks/?$ settings_accounts\.php [NC,L] # User RewriteBase / diff --git a/Caddyfile b/Caddyfile index e0929f7..7a6df82 100644 --- a/Caddyfile +++ b/Caddyfile @@ -129,6 +129,18 @@ halcyon.domain.tld { r ^/settings/media/?$ to /settings_media.php } + rewrite { + r ^/settings/followers/?$ + to /settings_accounts.php + } + rewrite { + r ^/settings/mutes/?$ + to /settings_accounts.php + } + rewrite { + r ^/settings/blocks/?$ + to /settings_accounts.php + } # End settings # Begin user diff --git a/README.md b/README.md index 06e87e9..5d3690f 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,7 @@ We moved our instances list to our webpage: https://www.halcyon.social/instances or read our new documentation pages to install it manually: https://www.halcyon.social/documentation.php?page=install ## Blog +- Release of Version 2.3.2 - Add block and mute management,add management for follow requests,add Catalan translation - Release of Version 2.3.1 - Fix duplicated thread,allow adding more toots as reply chain,add Dutch translation,more bugfixes,improved translations. - [Zanata outage and our reactions](https://blog.nikisoft.one/note/656562f160a728ea) - [Release of Version 2.3.0 - Polls are coming to Mastodon](https://blog.nikisoft.one/note/9d17f1ca19da4095) diff --git a/assets/js/halcyon/halcyonSettings.js b/assets/js/halcyon/halcyonSettings.js index c8e7479..6869626 100644 --- a/assets/js/halcyon/halcyonSettings.js +++ b/assets/js/halcyon/halcyonSettings.js @@ -151,7 +151,17 @@ else { formdata.append('locked','0'); var msgtext = "Account unlocked"; } -api.patch("accounts/update_credentials",formdata,function() { +api.patch("accounts/update_credentials",formdata,function(data) { +current_locked = data.locked; +localStorage.current_locked = data.locked; +if(data.locked) { +$(".js_current_profile_username").append(" "); +$("#js-settings_nav_followers").show(); +} +else { +$(".js_current_profile_username .fa-lock").remove(); +$("#js-settings_nav_followers").hide(); +} $("#savestate").removeClass("fa-spin").removeClass("fa-circle-o-notch").addClass("fa-check"); putMessage(__(msgtext)); }); @@ -505,6 +515,175 @@ putMessage(__("Vimeo embeds disabled")); } }); } +else if(window.location.pathname == "/settings/blocks") { +$('#js-settings_nav_blocks').toggleClass('view'); +var load_options = [{name:'limit',data:18}]; +let isSyncing = true; +api.get('blocks',load_options,function(blocks) { +for(let i in blocks) { +follows_template(blocks[i]).appendTo("#js-follows_profile"); +$('#js-follows_profile .follow_button[mid="'+blocks[i].id+'"]').removeClass("follow_button").addClass("unblock_button").children("span").text(__("Unblock")); +$('#js-follows_profile .unblock_button[mid="'+blocks[i].id+'"]').click(function() { +var mid = $(this).attr("mid"); +api.post("accounts/"+mid+"/unblock",function() { +$(".follows_profile_box[mid='"+mid+"']").fadeOut(); +}); +}); +} +links = getLinkFromXHRHeader(responce_headers); +replace_emoji(); +$("#js-follows_footer > i").css({"display":"none"}); +isSyncing = false; +}); +$(window).scroll(function () { +if($(window).scrollTop() + window.innerHeight >= $(document).height()-700) { +if(!isSyncing){ +isSyncing = true; +load_options.unshift({name:"max_id",data:links['next'].match(/max_id=(.+)&?/)[1]}); +api.get('blocks',load_options,function(blocks) { +if(blocks.length) { +for(let i in blocks) { +follows_template(blocks[i]).appendTo("#js-follows_profile"); +$('#js-follows_profile .follow_button[mid="'+blocks[i].id+'"]').removeClass("follow_button").addClass("unblock_button").children("span").text(__("Unblock")); +$('#js-follows_profile .unblock_button[mid="'+blocks[i].id+'"]').click(function() { +var mid = $(this).attr("mid"); +api.post("accounts/"+mid+"/unblock",function() { +$(".follows_profile_box[mid='"+mid+"']").fadeOut(); +}); +}); +} +links = getLinkFromXHRHeader(responce_headers); +replace_emoji(); +isSyncing = false; +} else { +isSyncing = true; +} +}); +load_options.shift(); +}; +}; +}); +} +else if(window.location.pathname == "/settings/mutes") { +$('#js-settings_nav_mutes').toggleClass('view'); +var load_options = [{name:'limit',data:18}]; +let isSyncing = true; +api.get('mutes',load_options,function(mutes) { +for(let i in mutes) { +follows_template(mutes[i]).appendTo("#js-follows_profile"); +$('#js-follows_profile .follow_button[mid="'+mutes[i].id+'"]').removeClass("follow_button").addClass("unmute_button").children("span").text(__("Unmute")); +$('#js-follows_profile .unmute_button[mid="'+mutes[i].id+'"]').click(function() { +var mid = $(this).attr("mid"); +api.post("accounts/"+mid+"/unmute",function() { +$(".follows_profile_box[mid='"+mid+"']").fadeOut(); +}); +}); +} +links = getLinkFromXHRHeader(responce_headers); +replace_emoji(); +$("#js-follows_footer > i").css({"display":"none"}); +isSyncing = false; +}); +$(window).scroll(function () { +if($(window).scrollTop() + window.innerHeight >= $(document).height()-700) { +if(!isSyncing){ +isSyncing = true; +load_options.unshift({name:"max_id",data:links['next'].match(/max_id=(.+)&?/)[1]}); +api.get('mutes',load_options,function(mutes) { +if(mutes.length) { +for(let i in mutes) { +follows_template(mutes[i]).appendTo("#js-follows_profile"); +$('#js-follows_profile .follow_button[mid="'+mutes[i].id+'"]').removeClass("follow_button").addClass("unmute_button").children("span").text(__("Unmute")); +$('#js-follows_profile .unmute_button[mid="'+mutes[i].id+'"]').click(function() { +var mid = $(this).attr("mid"); +api.post("accounts/"+mid+"/unmute",function() { +$(".follows_profile_box[mid='"+mid+"']").fadeOut(); +}); +}); +} +links = getLinkFromXHRHeader(responce_headers); +replace_emoji(); +isSyncing = false; +} else { +isSyncing = true; +} +}); +load_options.shift(); +}; +}; +}); +} +else if(window.location.pathname == "/settings/followers") { +$('#js-settings_nav_followers').toggleClass('view'); +var load_options = [{name:'limit',data:18}]; +let isSyncing = true; +api.get('follow_requests',load_options,function(followers) { +for(let i in followers) { +follows_template(followers[i]).appendTo("#js-follows_profile"); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').wrap($("
").css({position:"absolute",top:-32,right:8})); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').css({position:"initial",display:"inline",paddingLeft:6,paddingRight:6}); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').after($('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').clone()); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').first().css("margin-right","5px").removeClass("follow_button").addClass("reject_button").children("span").text(__("Reject")); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').removeClass("follow_button").addClass("accept_button").children("span").text(__("Accept")); +$('#js-follows_profile .reject_button[mid="'+followers[i].id+'"] .fa-user-plus').removeClass("fa-user-plus").addClass("fa-user-times"); +$('#js-follows_profile .reject_button[mid="'+followers[i].id+'"]').click(function() { +var mid = $(this).attr("mid"); +api.post("follow_requests/"+mid+"/reject",function() { +$(".follows_profile_box[mid='"+mid+"']").fadeOut(); +}); +}); +$('#js-follows_profile .accept_button[mid="'+followers[i].id+'"]').click(function() { +var mid = $(this).attr("mid"); +api.post("follow_requests/"+mid+"/authorize",function() { +$(".follows_profile_box[mid='"+mid+"']").fadeOut(); +}); +}); +} +links = getLinkFromXHRHeader(responce_headers); +replace_emoji(); +$("#js-follows_footer > i").css({"display":"none"}); +isSyncing = false; +}); +$(window).scroll(function () { +if($(window).scrollTop() + window.innerHeight >= $(document).height()-700) { +if(!isSyncing){ +isSyncing = true; +load_options.unshift({name:"max_id",data:links['next'].match(/max_id=(.+)&?/)[1]}); +api.get('follow_requests',load_options,function(followers) { +if(followers.length) { +for(let i in followers) { +follows_template(followers[i]).appendTo("#js-follows_profile"); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').wrap($("
").css({position:"absolute",top:-32,right:8})); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').css({position:"initial",display:"inline",paddingLeft:6,paddingRight:6}); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').after($('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').clone()); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').first().css("margin-right","5px").removeClass("follow_button").addClass("reject_button").children("span").text(__("Reject")); +$('#js-follows_profile .follow_button[mid="'+followers[i].id+'"]').removeClass("follow_button").addClass("accept_button").children("span").text(__("Accept")); +$('#js-follows_profile .reject_button[mid="'+followers[i].id+'"] .fa-user-plus').removeClass("fa-user-plus").addClass("fa-user-times"); +$('#js-follows_profile .reject_button[mid="'+followers[i].id+'"]').click(function() { +var mid = $(this).attr("mid"); +api.post("follow_requests/"+mid+"/reject",function() { +$(".follows_profile_box[mid='"+mid+"']").fadeOut(); +}); +}); +$('#js-follows_profile .accept_button[mid="'+followers[i].id+'"]').click(function() { +var mid = $(this).attr("mid"); +api.post("follow_requests/"+mid+"/authorize",function() { +$(".follows_profile_box[mid='"+mid+"']").fadeOut(); +}); +}); +} +links = getLinkFromXHRHeader(responce_headers); +replace_emoji(); +isSyncing = false; +} else { +isSyncing = true; +} +}); +load_options.shift(); +}; +}; +}); +} function selectbox($this) { var $this = $($this); var numberOfOptions = $this.children('option').length; diff --git a/docker/locale/locale.gen b/docker/locale/locale.gen index ecfb3b4..c2dfaf0 100644 --- a/docker/locale/locale.gen +++ b/docker/locale/locale.gen @@ -9,3 +9,4 @@ it_IT.UTF-8 UTF-8 cs_CZ.UTF-8 UTF-8 fr_FR.UTF-8 UTF-8 nl_NL.UTF-8 UTF-8 +ca_ES.UTF-8 UTF-8 diff --git a/locale/ca_ES/LC_MESSAGES/messages.mo b/locale/ca_ES/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..66f6e47581b89b7368a4f9b8514632971ffc5b14 GIT binary patch literal 17639 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\n" +"Language-Team: LANGUAGE \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Translate Toolkit 2.2.5\n" +"X-Pootle-Path: /ca/halcyon/ca.po\n" +"X-Pootle-Revision: 212\n" + +msgid "Language" +msgstr "Idioma" + +msgid "Language_en_US" +msgstr "Anglès (EUA)" + +msgid "Language_de_DE" +msgstr "Alemany" + +msgid "Language_ja_JP" +msgstr "Japonès" + +msgid "Language_ko_KR" +msgstr "Coreà" + +msgid "Language_pl_PL" +msgstr "Polonès" + +msgid "Language_gl_ES" +msgstr "Gallec" + +msgid "Language_pt_BR" +msgstr "Portuguès (Brasil)" + +msgid "Language_it_IT" +msgstr "Italià" + +msgid "Language_cs_CZ" +msgstr "Txec" + +msgid "Language_fr_FR" +msgstr "Francès" + +msgid "Sensitive content" +msgstr "Contingut delicat" + +msgid "Click to view" +msgstr "Clica aquí per a veure-ho" + +msgid "SHOW MORE" +msgstr "MOSTRA'N MÉS" + +msgid "SHOW LESS" +msgstr "MOSTRA'N MENYS" + +msgid "Public" +msgstr "Públic" + +msgid "Unlisted" +msgstr "Ocult" + +msgid "Followers-only" +msgstr "Només seguidors" + +msgid "Direct" +msgstr "Directe" + +msgid "Delete Toot" +msgstr "Suprimeix el tuut" + +msgid "Unpin Toot" +msgstr "Desclava el tuut" + +msgid "Pin Toot" +msgstr "Clava el tuut" + +msgid "Mute" +msgstr "Silencia" + +msgid "Block" +msgstr "Bloqueja" + +msgid "Report this Toot" +msgstr "Denuncia aquest tuut" + +msgid "Copy link to Toot" +msgstr "Copia l'enllaç en el tuut" + +msgid "View original" +msgstr "Veure l'original" + +msgid "Boosted" +msgstr "Promocionat" + +msgid "Pinned Toot" +msgstr "El tuut s'ha clavat" + +msgid "favourited Your Toot" +msgstr "ha afegit el teu tuut a favorits" + +msgid "boosted Your Toot" +msgstr "ha promocionat el teu tuut" + +msgid "followed you" +msgstr "t'ha seguit" + +msgid "Follow" +msgstr "Segueix" + +msgid "Toot your reply" +msgstr "Tuuteja la teva resposta" + +msgid "Reply" +msgstr "Contesta" + +msgid "Content warning" +msgstr "Avís sobre el contingut" + +msgid "Jan" +msgstr "Gen." + +msgid "Feb" +msgstr "Febr." + +msgid "Mar" +msgstr "Març" + +msgid "Apr" +msgstr "Abr." + +msgid "May" +msgstr "Maig" + +msgid "Jun" +msgstr "Juny" + +msgid "Jul" +msgstr "Jul." + +msgid "Aug" +msgstr "Ag." + +msgid "Sep" +msgstr "Set." + +msgid "Oct" +msgstr "Oct." + +msgid "Nov" +msgstr "Nov." + +msgid "Dec" +msgstr "Des." + +msgid "Changed setting to" +msgstr "Canvia la configuració a" + +msgid "Mark as NSFW by default enabled" +msgstr "S'ha activat Marcar com a NSFW com a predeterminat" + +msgid "Mark as NSFW by default disabled" +msgstr "S'ha desactivat Marcar com a NSFW com a predeterminat" + +msgid "Who to follow enabled" +msgstr "S'ha activat A qui t'agradaria seguir" + +msgid "Who to follow disabled" +msgstr "S'ha desactivat A qui t'agradaria seguir" + +msgid "Changed about me setting" +msgstr "S'ha canviat la configuració de Sobre mi" + +msgid "Uploaded new avatar" +msgstr "S'ha pujat un nou avatar" + +msgid "Uploaded new header" +msgstr "S'ha pujat una nova capçalera" + +msgid "Account locked" +msgstr "Compte privat" + +msgid "Account unlocked" +msgstr "Compte públic" + +msgid "Link previews enabled" +msgstr "S'ha activat la vista prèvia dels enllaços" + +msgid "Link previews disabled" +msgstr "S'ha desactivat la vista prèvia dels enllaços" + +msgid "You didn't allow notifications" +msgstr "No has permès notificacions" + +msgid "Desktop notifications enabled" +msgstr "S'han activat les notificacions a l'escriptori" + +msgid "Desktop notifications disabled" +msgstr "S'han desactivat les notificacions a l'escriptori" + +msgid "Replies shown" +msgstr "Respostes mostrades" + +msgid "Replies hidden" +msgstr "Respostes ocultes" + +msgid "CW content shown" +msgstr "Contingut delicat mostrat" + +msgid "CW content hidden" +msgstr "Contingut delicat ocult" + +msgid "NSFW content shown" +msgstr "Contingut NSFW mostrat" + +msgid "NSFW content hidden" +msgstr "Contingut NSFW ocult" + +msgid "Reply to" +msgstr "Contesta a" + +msgid "Report" +msgstr "Denuncia" + +msgid "Report a Toot of" +msgstr "Denuncia un tuut de" + +msgid "What's happening?" +msgstr "Què passa?" + +msgid "Toot" +msgstr "Tuut" + +msgid "Compose new Toot" +msgstr "Redacta un tuut nou" + +msgid "Please describe what the problem with the Toot is." +msgstr "Si us plau, descriu el problema amb el tuut." + +msgid "TOOTS" +msgstr "TUUTS" + +msgid "PEOPLE" +msgstr "PERSONES" + +msgid "Settings" +msgstr "Configuració" + +msgid "GENERAL" +msgstr "GENERAL" + +msgid "PROFILE" +msgstr "PERFIL" + +msgid "APPEARANCE" +msgstr "APARENÇA" + +msgid "Change instance" +msgstr "Canvia d'instància" + +msgid "Blank for default" +msgstr "En blanc com a predeterminat" + +msgid "FOLLOWING" +msgstr "USUARIS QUE SEGUEIXES" + +msgid "Interesting accounts of devs" +msgstr "Comptes de desenvolupadors interessants" + +msgid "Halcyon for" +msgstr "Halcyon per a" + +msgid "About" +msgstr "Sobre" + +msgid "Terms" +msgstr "Condicions" + +msgid "Apps" +msgstr "Aplicacions" + +msgid "Source code" +msgstr "Codi font" + +msgid "Other instances" +msgstr "Altres instàncies" + +msgid "Privacy policy" +msgstr "Política de privacitat" + +msgid "Version" +msgstr "Versió" + +msgid "Who to follow" +msgstr "A qui t'agradaria seguir" + +msgid "Enable who to follow" +msgstr "Activa A qui t'agradaria seguir" + +msgid "" +"Halcyon needs to connect to an external server to get a list of users which " +"have similar interests as you. If you want to use this feature, please opt-" +"in." +msgstr "" +"Halcyon s'ha de connectar amb un servidor extern per a obtenir una llista " +"d'usuaris que tinguin els mateixos interessos que tu. Si vols utilitzar " +"aquesta funció, si us plau,tria-la" + +msgid "MORE" +msgstr "MÉS" + +msgid "FOLLOWERS" +msgstr "SEGUIDORS" + +msgid "Following" +msgstr "Usuaris que segueixes" + +msgid "You'll no longer receive notifications from this user" +msgstr "No rebràs més notificacions d'aquest usuari" + +msgid "Unmuted this user" +msgstr "Deixa de silenciar l'usuari" + +msgid "This user has been blocked" +msgstr "Aquest usuari ha estat bloquejat" + +msgid "Unblocked this user" +msgstr "Aquest usuari ha estat desbloquejat" + +msgid "Your Toot has been deleted" +msgstr "S'ha suprimit el teu tuut" + +msgid "Your Toot has been pinned" +msgstr "S'ha clavat el teu tuut" + +msgid "Your Toot has been unpinned" +msgstr "S'ha desclavat el teu tuut" + +msgid "Edit profile" +msgstr "Edita el perfil" + +msgid "FAVOURITES" +msgstr "FAVORITS" + +msgid "Show" +msgstr "Mostra" + +msgid "Blocking" +msgstr "Usuaris bloquejats" + +msgid "Muting" +msgstr "Usuaris silenciats" + +msgid "Requested" +msgstr "Sol·licitat" + +msgid "Photos and toots" +msgstr "Fotos i tuuts" + +msgid "favourited your toot" +msgstr "ha afegit el teu tuut a favorits" + +msgid "boosted your toot" +msgstr "ha promocionat el teu tuut" + +msgid "mentioned you" +msgstr "t'ha mencionat" + +msgid "Your Toot was posted!" +msgstr "S'ha penjat el teu tuut!" + +msgid "News" +msgstr "Notícies" + +msgid "Source" +msgstr "Font" + +msgid "Privacy" +msgstr "Privacitat" + +msgid "Imprint" +msgstr "Avís legal" + +msgid "Contact" +msgstr "Contacte" + +msgid "Login" +msgstr "Inicia sessió" + +msgid "Login to Halcyon" +msgstr "Inicia sessió a Halcyon" + +msgid "create an account" +msgstr "crea un compte" + +msgid "or" +msgstr "o" + +msgid "I agree with the" +msgstr "Accepto" + +msgid "What is Halcyon" +msgstr "Què és Halcyon" + +msgid "" +"which aims to recreate the simple and beautiful user interface of Twitter " +"while keeping all advantages of decentral networks in focus." +msgstr "" +"que té per objectiu recrear la interfície senzilla i bonica de Twitter i " +"alhora mantenir tots els avantatges de les xarxes descentralitzades." + +msgid "Halcyon is a webclient for" +msgstr "Halcyon és un client web" + +msgid "Contact / Feedback" +msgstr "Contacte / Retorn" + +msgid "Use my contact form" +msgstr "Utilitza el meu formulari de contacte" + +msgid "Help us" +msgstr "Ajuda'ns" + +msgid "Halcyon Terms of Use" +msgstr "Condicions d'ús de Halcyon" + +msgid "" +"This terms of use agreement is for the users of web service Halcyon for " +"Mastodon and Pleroma (Halcyon for short) hosted at" +msgstr "" +"Aquest acord de condicions d'ús és per als usuaris del servei web de Halcyon " +"per a Mastodon i Pleroma («Halcyon», abreujat) allotjat a" + +msgid "Your Reply was posted!" +msgstr "S'ha penjat la teva resposta!" + +msgid "Toot reported successfully!" +msgstr "Tuut denunciat!" + +msgid "Link successfully copied!" +msgstr "Enllaç copiat correctament!" + +msgid "Home" +msgstr "Inici" + +msgid "Local" +msgstr "Local" + +msgid "Federated" +msgstr "Federat" + +msgid "Notifications" +msgstr "Notificacions" + +msgid "Search Mastodon" +msgstr "Cerca a Mastodon" + +msgid "View profile" +msgstr "Visita el perfil" + +msgid "Log out" +msgstr "Tanca la sessió" + +msgid "All" +msgstr "Tot" + +msgid "new notitification" +msgstr "nova notificació" + +msgid "Show all NSFW content" +msgstr "Mostra tot el contingut NSFW" + +msgid "Show all CW content" +msgstr "Mostra tot el contingut delicat" + +msgid "Show replies" +msgstr "Mostra les respostes" + +msgid "Desktop notifications" +msgstr "Notificacions de l'escriptori" + +msgid "Enable link previews" +msgstr "Activa la vista prèvia dels enllaços" + +msgid "Auto update" +msgstr "Actualització automàtica" + +msgid "Manual update" +msgstr "Actualització manual" + +msgid "Appearance settings" +msgstr "Configuració de l'aparença" + +msgid "New posts streaming" +msgstr "Reproducció d'apunts nous" + +msgid "replies" +msgstr "respostes" + +msgid "General settings" +msgstr "Configuració general" + +msgid "Default post privacy" +msgstr "Privadesa dels apunts com a predeterminat" + +msgid "Mark as NSFW by default" +msgstr "Marca com a NSFW com a predeterminat" + +msgid "Media" +msgstr "Multimèdia" + +msgid "FOLLOWS YOU" +msgstr "ET SEGUEIX" + +msgid "Local instance" +msgstr "Instància local" + +msgid "Hashtag search filter" +msgstr "Filtre de cerca d'etiqueta" + +msgid "All instances" +msgstr "Totes les instàncies" + +msgid "Local only" +msgstr "Només locals" + +msgid "Lock account" +msgstr "Protegeix el compte" + +msgid "Header" +msgstr "Capçalera" + +msgid "Avatar" +msgstr "Avatar" + +msgid "About me" +msgstr "Sobre mi" + +msgid "Display name" +msgstr "Mostra el nom" + +msgid "Profile settings" +msgstr "Configuració del perfil" + +msgid "Toots" +msgstr "Tuuts" + +msgid "Favourites" +msgstr "Favorits" + +msgid "New favourite" +msgstr "Nou favorit" + +msgid "New boost" +msgstr "Nova promoció" + +msgid "New follower" +msgstr "Nou seguidor" + +msgid "New mention" +msgstr "Nova menció" + +msgid "Dark theme enabled" +msgstr "Mode fosc activat" + +msgid "Dark theme disabled" +msgstr "Mode fosc desactivat" + +msgid "Only on top" +msgstr "Només a dalt" + +msgid "Enable dark theme" +msgstr "Activa el mode fosc" + +msgid "Please enter the new name for this list." +msgstr "Si us plau, introdueix el nom nou per a aquesta llista." + +msgid "The name of your list can't be empty!" +msgstr "El nom de la llista no es pot quedar en blanc!" + +msgid "Your list has been renamed" +msgstr "S'ha canviat el nom de la llista" + +msgid "Are you sure that you want to delete this list?" +msgstr "Segur que vols suprimir aquesta llista?" + +msgid "Your list has been deleted" +msgstr "S'ha suprimit la llista" + +msgid "Please enter the name of your new list." +msgstr "Si us plau, introdueix el nom de la teva nova llista." + +msgid "Add" +msgstr "Afegeix" + +msgid "Remove" +msgstr "Elimina" + +msgid "Add to list" +msgstr "Afegeix a la llista" + +msgid "Are you sure that you want to mute this user?" +msgstr "Segur que vols silenciar aquest usuari?" + +msgid "Are you sure that you want to block this user?" +msgstr "Segur que vols bloquejar aquest usuari?" + +msgid "Are you sure that you want to delete this toot?" +msgstr "Segur que vols eliminar aquest tuut?" + +msgid "Added this account to the list" +msgstr "Aquest compte s'ha afegit a la llista" + +msgid "" +"You need to follow this user to add him/her to the list. Do you want to do " +"that now?" +msgstr "" +"Has de seguir aquest usuari per a afegir-lo a la llista. Ho vols fer ara?" + +msgid "You successfully followed this user." +msgstr "Has seguit aquest usuari correctament." + +msgid "Removed this account from the list" +msgstr "Aquest compte s'ha eliminat de la llista" + +msgid "Joined at" +msgstr "S'ha unit a" + +msgid "Direct messages" +msgstr "Missatges directes" + +msgid "Lists" +msgstr "Llistes" + +msgid "Open public profile" +msgstr "Perfil obert públic" + +msgid "My Lists" +msgstr "Les meves llistes" + +msgid "Confirmation" +msgstr "Confirmació" + +msgid "Yes" +msgstr "Sí" + +msgid "Cancel" +msgstr "Cancel·la" + +msgid "Prompt" +msgstr "Avís" + +msgid "Ok" +msgstr "D'acord" + +msgid "Autocomplete enabled" +msgstr "Predicció de text activada" + +msgid "Autocomplete disabled" +msgstr "Predicció de text desactivada" + +msgid "Changed custom profile field" +msgstr "S'ha canviat el camp de perfil personalitzat" + +msgid "Notifications when tab is closed enabled" +msgstr "S'han activat les notificacions quan la pestanya està tancada" + +msgid "Notifications when tab is closed disabled" +msgstr "S'han desactivat les notificacions quan la pestanya està tancada" + +msgid "Toots of bots shown" +msgstr "Tuuts de bots mostrats" + +msgid "Toots of bots hidden" +msgstr "Tuuts de bots ocults" + +msgid "Filter created" +msgstr "S'ha creat el filtre" + +msgid "Gif animations enabled" +msgstr "S'han activat els gifs animats" + +msgid "Gif animations disabled" +msgstr "S'han desactivat els gifs animats" + +msgid "Video player enabled" +msgstr "S'ha activat el reproductor de vídeo" + +msgid "Video player disabled" +msgstr "S'ha desactivat el reproductor de vídeo" + +msgid "Audio player enabled" +msgstr "S'ha activat el reproductor d'àudio" + +msgid "Audio player disabled" +msgstr "S'ha desactivat el reproductor d'àudio" + +msgid "PeerTube embeds enabled" +msgstr "S'han activat les incrustacions de PeerTube" + +msgid "PeerTube embeds disabled" +msgstr "S'han desactivat les incrustacions de PeerTube" + +msgid "YouPlay embeds enabled" +msgstr "S'han activat les incrustacions de YouPlay" + +msgid "YouPlay embeds disabled" +msgstr "S'han desactivat les incrustacions de YouPlay" + +msgid "Invidio.us embeds enabled" +msgstr "S'han activat les incrustacions d'Invidio.us" + +msgid "Invidio.us embeds disabled" +msgstr "S'han desactivat les incrustacions d'Invidio.us" + +msgid "Vimeo embeds enabled" +msgstr "S'han activat les incrustacions de Vimeo" + +msgid "Vimeo embeds disabled" +msgstr "S'han desactivat les incrustacions de Vimeo" + +msgid "Thread" +msgstr "Fil" + +msgid "Never" +msgstr "Mai" + +msgid "Don't change" +msgstr "No ho canviïs" + +msgid "Filter updated" +msgstr "Filtre actualitzat" + +msgid "Are you sure that you want to delete this filter?" +msgstr "Segur que vols suprimir aquest filtre?" + +msgid "Your filter has been deleted" +msgstr "S'ha suprimit el teu filtre" + +msgid "Toot to" +msgstr "Enviat un tuut a " + +msgid "Administrated by" +msgstr "Administrat per " + +msgid "Users" +msgstr "Usuaris" + +msgid "Connections" +msgstr "Connexions" + +msgid "Notifications when tab closed" +msgstr "Notificacions quan la pestanya està tancada" + +msgid "Filter settings" +msgstr "Configuració de filtres" + +msgid "Show toots of bots" +msgstr "Mostra tuuts de bots" + +msgid "Add new filter" +msgstr "Afegeix un nou filtre" + +msgid "Create a filter" +msgstr "Crea un nou filtre" + +msgid "Word or phrase to filter" +msgstr "Paraula o frase que vols filtrar" + +msgid "Filter in the following timelines" +msgstr "Filtra les cronologies següents" + +msgid "Expires in" +msgstr "Expira el" + +msgid "Autocomplete in compose field" +msgstr "Predicció de text en el camp de redacció" + +msgid "Media settings" +msgstr "Configuració de multimèdia" + +msgid "Play animated GIFs" +msgstr "Reprodueix els gifs animats" + +msgid "Enable video player" +msgstr "Activa el reproductor de vídeo" + +msgid "Enable audio player" +msgstr "Activa el reproductor d'àudio" + +msgid "Embed PeerTube videos" +msgstr "Incrusta vídeos de PeerTube" + +msgid "Embed YouTube using YouPlay" +msgstr "Incrusta vídeos de YouTube emprant YouPlay" + +msgid "Embed YouTube using Invidio.us" +msgstr "Incrusta vídeos de YouTube emprant Invidio.us" + +msgid "Embed Vimeo using YouPlay" +msgstr "Incrusta vídeos de Vimeo emprant YouPlay" + +msgid "Custom profile fields" +msgstr "Camps de perfil personalitzats" + +msgid "Name" +msgstr "Nom" + +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 "" +"er a verificar que els enllaços dels teus camps personalitzats et pertanyen, " +"pots afegir l'enllaç de sota al teu web. Pots canviar el text de l'enllaç " +"com vulguis." + +msgid "Message" +msgstr "Missatge" + +msgid "Filter" +msgstr "Filtra" + +msgid "second" +msgstr "segon" + +msgid "seconds" +msgstr "segons" + +msgid "minute" +msgstr "minut" + +msgid "minutes" +msgstr "minuts" + +msgid "hour" +msgstr "hora" + +msgid "hours" +msgstr "hores" + +msgid "day" +msgstr "dia" + +msgid "days" +msgstr "dies" + +msgid "week" +msgstr "setmana" + +msgid "Filter posts irreversible" +msgstr "Filtrar apunts (irreversible)" + +msgid "Whole word" +msgstr "Paraula sencera" + +msgid "FILTERS" +msgstr "FILTRES" + +msgid "MEDIA" +msgstr "MULTIMÈDIA" + +msgid "Dark theme reset to standard" +msgstr "El tema fosc es restableix a l'estàndard" + +msgid "Pictures shown in full height" +msgstr "Les imatges es mostren a mida completa" + +msgid "Pictures shown in default height" +msgstr "Les imatges es mostren a la mida per defecte" + +msgid "Threads shown in thread view" +msgstr "Els fils es mostren en vista de fils" + +msgid "Threads shown in chronological order" +msgstr "Els fils es mostren en ordre cronològic" + +msgid "Final results" +msgstr "Resultats finals" + +msgid "votes" +msgstr "vots" + +msgid "left" +msgstr "esquerra" + +msgid "Vote" +msgstr "Vota" + +msgid "A poll you participated in has ended" +msgstr "L'enquesta a la que has participat ha acabat" + +msgid "Days" +msgstr "Dies" + +msgid "Hours" +msgstr "Hores" + +msgid "Minutes" +msgstr "Minuts" + +msgid "Multiple choice" +msgstr "Opció múltiple" + +msgid "Poll finished" +msgstr "Enquesta finalitzada" + +msgid "" +"If you close the overlay, your text will get deleted! Are you sure you want " +"to close it?" +msgstr "" +"Si tanqueu la superposició, s’eliminarà el text! Esteu segur que voleu " +"tancar-lo?" + +msgid "Website" +msgstr "Lloc web" + +msgid "Show pictures in full height" +msgstr "Mostra imatges en alçada completa" + +msgid "Show threads in thread view in timeline" +msgstr "Mostra els fils en la vista de fil en la línia de temps" diff --git a/nginx.conf b/nginx.conf index 6e211d1..df0dd41 100644 --- a/nginx.conf +++ b/nginx.conf @@ -72,6 +72,10 @@ rewrite ^/settings/profile/?$ /settings_profile.php break; rewrite ^/settings/appearance/?$ /settings_appearance.php break; rewrite ^/settings/filters/?$ /settings_filters.php break; rewrite ^/settings/media/?$ /settings_media.php break; +rewrite ^/settings/followers/?$ /settings_accounts.php break; +rewrite ^/settings/mutes/?$ /settings_accounts.php break; +rewrite ^/settings/blocks/?$ /settings_accounts.php break; + # User rewrite ^/@(.+)@(.+)\.([a-z]+)/?$ /user.php?user=@$1@$2\.$3 break; diff --git a/settings_accounts.php b/settings_accounts.php new file mode 100644 index 0000000..52eda85 --- /dev/null +++ b/settings_accounts.php @@ -0,0 +1,19 @@ + +
+ +
+ +
+
+
+
+ +
+
+
+
+ + diff --git a/version.txt b/version.txt index 2bf1c1c..f90b1af 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.3.1 +2.3.2 diff --git a/widgets/settings_header.php b/widgets/settings_header.php index 0a52152..058bad0 100644 --- a/widgets/settings_header.php +++ b/widgets/settings_header.php @@ -30,7 +30,25 @@

+
  • + +

    +
    +
  • +
  • + +

    +
    +
  • + +