From 579837771b3319627dc6ed943e39f872ef2843ab Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Tue, 12 Mar 2024 16:17:09 +0100 Subject: [PATCH] Add explicit includeRegex to avoid string duplication. Importing "screen_room_.*" was not filtering enough, and `excludeRegex` was not complete enough. --- tools/localazy/config.json | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/tools/localazy/config.json b/tools/localazy/config.json index 96f39967a5..1c28462e51 100644 --- a/tools/localazy/config.json +++ b/tools/localazy/config.json @@ -128,17 +128,20 @@ { "name" : ":features:messages:impl", "includeRegex" : [ - "room_timeline_.*", - "screen_room_.*", - "screen\\.room\\..*", - "screen_dm_details_.*", "emoji_picker_category_.*", - ".*report_content_.*" - ], - "excludeRegex" : [ - "screen_room_details_.*", - "screen_room_member.*", - "screen_dm_.*" + "report_content_.*", + "room_timeline_.*", + "screen_report_content_.*", + "screen_room_attachment.*", + "screen_room_encrypted.*", + "screen_room_invite.*", + "screen\\.room\\.mention.*", + "screen_room_message.*", + "screen_room_no_permission.*", + "screen_room_reactions.*", + "screen_room_retry.*", + "screen_room_timeline.*", + "screen_room_typing.*" ] }, {