Browse Source

Add explicit includeRegex to avoid string duplication. Importing "screen_room_.*" was not filtering enough, and `excludeRegex` was not complete enough.

pull/2534/head
Benoit Marty 6 months ago
parent
commit
579837771b
  1. 23
      tools/localazy/config.json

23
tools/localazy/config.json

@ -128,17 +128,20 @@
{ {
"name" : ":features:messages:impl", "name" : ":features:messages:impl",
"includeRegex" : [ "includeRegex" : [
"room_timeline_.*",
"screen_room_.*",
"screen\\.room\\..*",
"screen_dm_details_.*",
"emoji_picker_category_.*", "emoji_picker_category_.*",
".*report_content_.*" "report_content_.*",
], "room_timeline_.*",
"excludeRegex" : [ "screen_report_content_.*",
"screen_room_details_.*", "screen_room_attachment.*",
"screen_room_member.*", "screen_room_encrypted.*",
"screen_dm_.*" "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.*"
] ]
}, },
{ {

Loading…
Cancel
Save