From 6d8b33a58a7a5709e5f3c1be990dc7b4543e36c7 Mon Sep 17 00:00:00 2001 From: Francesco <129339155+katullo11@users.noreply.github.com> Date: Tue, 23 Jan 2024 06:26:09 +0100 Subject: [PATCH 001/493] feat(i18n): Update it-IT locale (#2567) --- locales/it-IT.json | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/locales/it-IT.json b/locales/it-IT.json index dac9f265..bc5bef54 100644 --- a/locales/it-IT.json +++ b/locales/it-IT.json @@ -120,12 +120,14 @@ "block_account": { "cancel": "Annulla", "confirm": "Blocca", - "description": "Confermi di voler bloccare {0}?" + "description": "Confermi di voler bloccare {0}?", + "title": "Blocca account" }, "block_domain": { "cancel": "Annulla", "confirm": "Blocca", - "description": "Confermi di voler bloccare {0}?" + "description": "Confermi di voler bloccare {0}?", + "title": "Blocca dominio" }, "common": { "cancel": "Annulla", @@ -134,27 +136,32 @@ "delete_list": { "cancel": "Annulla", "confirm": "Elimina", - "description": "Confermi di voler eliminare la lista \"{0}\"?" + "description": "Confermi di voler eliminare la lista \"{0}\"?", + "title": "Elimina lista" }, "delete_posts": { "cancel": "Annulla", "confirm": "Elimina", - "description": "Confermi di voler eliminare questo post?" + "description": "Confermi di voler eliminare questo post?", + "title": "Elimina post" }, "mute_account": { "cancel": "Annulla", "confirm": "Silenzia", - "description": "Confermi di voler silenziare {0}?" + "description": "Confermi di voler silenziare {0}?", + "title": "Silenzia account" }, "show_reblogs": { "cancel": "Annulla", "confirm": "Mostra", - "description": "Confermi di voler mostrare i post potenziati da {0}?" + "description": "Confermi di voler mostrare i post potenziati da {0}?", + "title": "Mostra potenziamenti" }, "unfollow": { "cancel": "Annulla", "confirm": "Smetti di seguire", - "description": "Confermi di voler smettere di seguire?" + "description": "Confermi di voler smettere di seguire?", + "title": "Smetti di seguire" } }, "conversation": { @@ -521,6 +528,7 @@ "hide_username_emojis": "Nascondi emoji dai nomi utente", "hide_username_emojis_description": "Nasconde le emoji all'interno dei nomi utente nella cronologia. Le emoji saranno comunque visibili nelle pagine dei profili.", "label": "Preferenze", + "optimize_for_low_performance_device": "Ottimizza per dispositivi a basse prestazioni", "title": "Funzionalità sperimentali", "use_star_favorite_icon": "Usa icona stella per apprezzamenti", "user_picker": "Selettore utente", From af8a6e68094983cb3e33a52d40fb54ef2affc4ca Mon Sep 17 00:00:00 2001 From: Francesco <129339155+katullo11@users.noreply.github.com> Date: Wed, 24 Jan 2024 10:13:02 +0100 Subject: [PATCH 002/493] feat(i18n): Update it-IT locale (#2569) --- locales/it-IT.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locales/it-IT.json b/locales/it-IT.json index bc5bef54..6afab0a9 100644 --- a/locales/it-IT.json +++ b/locales/it-IT.json @@ -517,7 +517,7 @@ "github_cards": "GitHub Cards", "github_cards_description": "Quando viene pubblicato un link GitHub, viene mostrato un riquadro HTML accessibile usando i metadati del grafico sociale invece dell'immmagine.", "grayscale_mode": "Modalità scala di grigi", - "hide_account_hover_card": "Nascondi anteprima account al passaggio del mouse", + "hide_account_hover_card": "Nascondi anteprima profilo al passaggio del mouse", "hide_alt_indi_on_posts": "Nascondi indicatori testo alternativo sui post", "hide_boost_count": "Nascondi contatore potenziamenti", "hide_favorite_count": "Nascondi contatore apprezzamenti", @@ -635,7 +635,7 @@ "notifications_mention": "Menzione", "notifications_more_tooltip": "Filtra notifiche per tipo", "notifications_poll": "Sondaggio", - "notifications_reblog": "Apprezzamento", + "notifications_reblog": "Potenziamento", "notifications_status": "Stato", "notifications_update": "Aggiornamento", "posts": "Post", From 77b917a921592426856fdab73c91e46feaabc479 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Wed, 24 Jan 2024 21:12:42 +0900 Subject: [PATCH 003/493] fix: rename tab label from "Mention" to "Mentions" (#2570) --- locales/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locales/en.json b/locales/en.json index 142e93d6..f244dca5 100644 --- a/locales/en.json +++ b/locales/en.json @@ -632,7 +632,7 @@ "notifications_favourite": "Favourite", "notifications_follow": "Follow", "notifications_follow_request": "Follow request", - "notifications_mention": "Mention", + "notifications_mention": "Mentions", "notifications_more_tooltip": "Filter notifications by type", "notifications_poll": "Poll", "notifications_reblog": "Boost", From 2a59543836fa4ed786f1dcd717069e596bc5c6bd Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Thu, 25 Jan 2024 00:48:24 +0900 Subject: [PATCH 004/493] fix: allow to translate "Lock" string on profile (#2571) --- components/account/AccountLockIndicator.vue | 4 +++- locales/en.json | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/components/account/AccountLockIndicator.vue b/components/account/AccountLockIndicator.vue index 7384be53..4d6cb263 100644 --- a/components/account/AccountLockIndicator.vue +++ b/components/account/AccountLockIndicator.vue @@ -2,6 +2,8 @@ defineProps<{ showLabel?: boolean }>() + +const { t } = useI18n() diff --git a/locales/en.json b/locales/en.json index f244dca5..4f08ae90 100644 --- a/locales/en.json +++ b/locales/en.json @@ -27,6 +27,7 @@ "follows_you": "Follows you", "go_to_profile": "Go to profile", "joined": "Joined", + "lock": "Lock", "moved_title": "has indicated that their new account is now:", "muted_users": "Muted users", "muting": "Muted", From 172883a499c59de8eaa8104ee30df38f3e2aa3ea Mon Sep 17 00:00:00 2001 From: Francesco <129339155+katullo11@users.noreply.github.com> Date: Fri, 26 Jan 2024 04:21:23 +0100 Subject: [PATCH 005/493] feat(i18n): Update it-IT locale (#2572) --- locales/it-IT.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/locales/it-IT.json b/locales/it-IT.json index 6afab0a9..63cc4160 100644 --- a/locales/it-IT.json +++ b/locales/it-IT.json @@ -27,6 +27,7 @@ "follows_you": "Ti segue", "go_to_profile": "Vai al profilo", "joined": "Iscritto", + "lock": "Privato", "moved_title": "ha indicato che il suo nuovo account è:", "muted_users": "Utenti silenziati", "muting": "Silenziato", @@ -632,7 +633,7 @@ "notifications_favourite": "Apprezzamento", "notifications_follow": "Nuovo seguace", "notifications_follow_request": "Richiesta di seguire", - "notifications_mention": "Menzione", + "notifications_mention": "Menzioni", "notifications_more_tooltip": "Filtra notifiche per tipo", "notifications_poll": "Sondaggio", "notifications_reblog": "Potenziamento", From 8db37617d41f69a800617d7b1134f79733ae2fc6 Mon Sep 17 00:00:00 2001 From: Duy <104808921+mastoduy@users.noreply.github.com> Date: Sat, 27 Jan 2024 01:43:07 +0700 Subject: [PATCH 006/493] feat(i18n): Update vi-VN.json (#2574) --- locales/vi-VN.json | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/locales/vi-VN.json b/locales/vi-VN.json index 2b65070f..023ec969 100644 --- a/locales/vi-VN.json +++ b/locales/vi-VN.json @@ -27,6 +27,7 @@ "follows_you": "Đang theo dõi bạn", "go_to_profile": "Xem hồ sơ", "joined": "Đã tham gia", + "lock": "KHÓA", "moved_title": "cho hay địa chỉ mới của họ bây giờ là:", "muted_users": "Người đã ẩn", "muting": "Đã ẩn", @@ -36,7 +37,7 @@ "pinned": "Đã ghim", "posts": "Tút", "posts_count": "{0} Tút|{0} Tút|{0} Tút", - "profile_description": "Ảnh bìa của {0}", + "profile_description": "Ảnh bìa {0}", "profile_personal_note": "Ghi chú về người này", "profile_unavailable": "Hồ sơ không khả dụng", "reject": "Từ chối theo dõi", @@ -94,7 +95,7 @@ "activate": "Kích hoạt", "complete": "Hoàn thành", "compose_desc": "Soạn tút mới", - "n_people_in_the_past_n_days": "{0} người trong {1} ngày gần đây", + "n_people_in_the_past_n_days": "{0} người nhắc đến trong {1} ngày gần đây", "select_lang": "Chọn ngôn ngữ", "sign_in_desc": "Thêm một tài khoản khác", "switch_account": "Chuyển sang {0}", @@ -288,7 +289,7 @@ "bookmarks": "Tút đã lưu", "built_at": "Bản dựng {0}", "compose": "Soạn tút", - "conversations": "Thảo luận", + "conversations": "Nhắn riêng", "explore": "Khám phá", "favourites": "Lượt thích", "federated": "Liên hợp", @@ -494,10 +495,10 @@ "unsupported": "Trình duyệt của bạn không hỗ trợ thông báo đẩy.", "warning": { "enable_close": "Đóng", - "enable_description": "Để nhận thông báo khi Elk không mở, hãy bật thông báo đẩy. Bạn có thể kiểm soát chính xác loại tương tác nào sẽ tạo thông báo đẩy thông qua nút \"@:settings.notifications.show_btn{'\"'} ở trên sau khi đã bật.", - "enable_description_desktop": "Để nhận thông báo khi Elk không mở, hãy bật thông báo đẩy. Bạn có thể kiểm soát chính xác loại tương tác nào sẽ tạo thông báo đẩy trong \"Cài đặt > Thông báo > Thông báo đẩy\" sau khi đã bật.", - "enable_description_mobile": "Bạn cũng có thể truy cập cài đặt bằng menu điều hướng \"Cài đặt > Thông báo > Thông báo đẩy\".", - "enable_description_settings": "Để nhận thông báo khi Elk không mở, hãy bật thông báo đẩy. Bạn sẽ có thể kiểm soát chính xác loại tương tác nào sẽ tạo thông báo đẩy trên cùng màn hình này sau khi bạn bật chúng.", + "enable_description": "Để nhận thông báo khi không mở Elk, hãy bật thông báo đẩy. Bạn có thể kiểm soát chính xác loại tương tác nào sẽ tạo thông báo đẩy thông qua nút \"@:settings.notifications.show_btn{'\"'} ở trên sau khi đã bật.", + "enable_description_desktop": "Để nhận thông báo khi không mở Elk, hãy bật thông báo đẩy. Bạn có thể kiểm soát chính xác loại tương tác nào sẽ tạo thông báo đẩy trong \"Cài đặt > Thông báo > Thông báo đẩy\" sau khi đã bật.", + "enable_description_mobile": "Bạn cũng có thể truy cập menu điều hướng \"Cài đặt > Thông báo > Thông báo đẩy\".", + "enable_description_settings": "Để nhận thông báo khi không mở Elk, hãy bật thông báo đẩy. Bạn sẽ có thể kiểm soát chính xác loại tương tác nào sẽ tạo thông báo đẩy trên cùng màn hình này sau khi đã bật.", "enable_desktop": "Bật thông báo đẩy", "enable_title": "Không bỏ lỡ bất cứ điều gì", "re_auth": "Hình như máy chủ của bạn không hỗ trợ thông báo đẩy. Hãy thử đăng xuất và đăng nhập lại, nếu thông báo này vẫn xuất hiện, hãy liên hệ với quản trị viên máy chủ của bạn." @@ -532,7 +533,7 @@ "title": "Tính năng thử nghiệm", "use_star_favorite_icon": "Dùng biểu tượng thích ngôi sao", "user_picker": "Chuyển Đổi Tài Khoản", - "user_picker_description": "Hiển thị ảnh đại diện của các tài khoản đã đăng nhập ở phía dưới bên trái để nhanh chóng chuyển đổi giữa chúng.", + "user_picker_description": "Hiển thị danh sách tài khoản đã đăng nhập ở góc dưới bên trái để nhanh chóng chuyển đổi qua lại.", "virtual_scroll": "Cuộn Ảo", "virtual_scroll_description": "Dùng một danh sách ảo trong các bảng tin để có thể kết xuất số lượng mục lớn hiệu quả.", "wellbeing": "Chống nghiện", @@ -607,7 +608,7 @@ "replying_to": "Trả lời {0}", "show_full_thread": "Chuỗi tút liên quan", "someone": "ai đó", - "spoiler_media_hidden": "Ẩn media", + "spoiler_media_hidden": "Media ẩn", "spoiler_show_less": "Thu gọn", "spoiler_show_more": "Mở rộng", "thread": "Thảo luận", From 285f83e2fa9b873eac38d4bd86b9962bc97b24ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=8E=E4=B8=BD?= Date: Sat, 27 Jan 2024 02:44:07 +0800 Subject: [PATCH 007/493] feat: Add option to preserve whitespace in parseOptions (#2448) --- composables/tiptap.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composables/tiptap.ts b/composables/tiptap.ts index 557b27fd..dd629937 100644 --- a/composables/tiptap.ts +++ b/composables/tiptap.ts @@ -110,6 +110,9 @@ export function useTiptap(options: UseTiptapOptions) { class: 'content-editor content-rich', }, }, + parseOptions: { + preserveWhitespace: 'full', + }, autofocus, editable: true, }) From 30e2295af471bdc64f166378bcba9dec8674bc98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20S=C3=A1nchez?= Date: Sat, 27 Jan 2024 00:23:57 +0100 Subject: [PATCH 008/493] feat(i18n): Update es.json (#2576) --- locales/es.json | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/locales/es.json b/locales/es.json index 0316b40f..399174cb 100644 --- a/locales/es.json +++ b/locales/es.json @@ -27,6 +27,7 @@ "follows_you": "Te sigue", "go_to_profile": "Ir al perfil", "joined": "Se unió", + "lock": "Cuenta privada", "moved_title": "ha indicado que su nueva cuenta ahora es:", "muted_users": "Usuarios silenciados", "muting": "Silenciado", @@ -120,12 +121,14 @@ "block_account": { "cancel": "Cancelar", "confirm": "Bloquear", - "description": "¿Estás seguro que quieres bloquear a {0}?" + "description": "¿Estás seguro que quieres bloquear a {0}?", + "title": "Bloquear cuenta" }, "block_domain": { "cancel": "Cancelar", "confirm": "Bloquear", - "description": "¿Estás seguro que quieres bloquear a {0}?" + "description": "¿Estás seguro que quieres bloquear a {0}?", + "title": "Bloquear dominio" }, "common": { "cancel": "No", @@ -134,27 +137,32 @@ "delete_list": { "cancel": "Cancelar", "confirm": "Eliminar", - "description": "¿Está seguro de querer eliminar la lista \"{0}\"?" + "description": "¿Está seguro de querer eliminar la lista \"{0}\"?", + "title": "Eliminar lista" }, "delete_posts": { "cancel": "Cancelar", "confirm": "Eliminar", - "description": "¿Estás seguro que quieres eliminar esta publicación?" + "description": "¿Estás seguro que quieres eliminar esta publicación?", + "title": "Eliminar publicación" }, "mute_account": { "cancel": "Cancelar", "confirm": "Silenciar", - "description": "¿Estás seguro que quieres silenciar a {0}?" + "description": "¿Estás seguro que quieres silenciar a {0}?", + "title": "Silenciar cuenta" }, "show_reblogs": { "cancel": "Cancelar", "confirm": "Mostrar", - "description": "¿Estás seguro que quieres mostrar los retoots de {0}?" + "description": "¿Estás seguro que quieres mostrar los retoots de {0}?", + "title": "Mostrar retoots" }, "unfollow": { "cancel": "Cancelar", "confirm": "Dejar de seguir", - "description": "¿Estás seguro que quieres dejar de seguir?" + "description": "¿Estás seguro que quieres dejar de seguir?", + "title": "Dejar de seguir" } }, "conversation": { @@ -521,6 +529,7 @@ "hide_username_emojis": "Ocultar emojis en el nombre de usuario", "hide_username_emojis_description": "Oculta los emojis de los nombres de usuarios en la línea de tiempo. Los emojis permanecerán visibles en sus perfiles.", "label": "Preferencias", + "optimize_for_low_performance_device": "Optimizar para dispositivos de bajo rendimiento", "title": "Funcionalidades experimentales", "use_star_favorite_icon": "Utilizar icono de estrella para favoritos", "user_picker": "Selector de usuarios", From be4752ee0c4fb6d17cd05a3651bd27e76115fb4a Mon Sep 17 00:00:00 2001 From: Emanuel Pina Date: Thu, 8 Feb 2024 15:41:26 +0000 Subject: [PATCH 009/493] feat(i18n): Update portuguese from Portugal translation (#2577) --- locales/pt.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/locales/pt.json b/locales/pt.json index 8cf04e99..6bcf94a1 100644 --- a/locales/pt.json +++ b/locales/pt.json @@ -27,6 +27,7 @@ "follows_you": "Segue-o", "go_to_profile": "Ir para o perfil", "joined": "Juntou-se a", + "lock": "Privada", "moved_title": "Indicou que a sua nova conta é agora:", "muted_users": "Utilizadores silenciados", "muting": "Silenciados", @@ -528,6 +529,7 @@ "hide_username_emojis": "Esconder emojis do nome de utilizador", "hide_username_emojis_description": "Esconde os emojis do nome de utilizador nas cronologias. Os Emojis continuarão a ser visíveis nos seus perfis.", "label": "Preferências", + "optimize_for_low_performance_device": "Otimizar para dispositivos de menor desempenho", "title": "Funcionalidades Experimentais", "use_star_favorite_icon": "Utilizar estrela como ícone de favoritos", "user_picker": "Selecionador de Utilizador", From 40415f34a484939a3ed16f4372a59762f1433397 Mon Sep 17 00:00:00 2001 From: lazzzis Date: Sat, 10 Feb 2024 22:39:45 -0800 Subject: [PATCH 010/493] fix: fix tooltip overlaps with editor tool popup on Mobile (#2582) --- components/publish/PublishEditorTools.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/publish/PublishEditorTools.vue b/components/publish/PublishEditorTools.vue index 7515f7f1..1e29cbd7 100644 --- a/components/publish/PublishEditorTools.vue +++ b/components/publish/PublishEditorTools.vue @@ -8,7 +8,7 @@ const { editor } = defineProps<{