From b5574acd3dd338bfe208c0098a90a416e2e2d47a Mon Sep 17 00:00:00 2001 From: Sean Budd Date: Fri, 9 Jan 2026 17:03:32 +1100 Subject: [PATCH] Add support for '.xliff' file extension --- identify/extensions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/identify/extensions.py b/identify/extensions.py index 4740b3b..3a50915 100644 --- a/identify/extensions.py +++ b/identify/extensions.py @@ -300,6 +300,8 @@ 'xhtml': {'text', 'xml', 'html', 'xhtml'}, 'xacro': {'text', 'xml', 'urdf', 'xacro'}, 'xctestplan': {'text', 'json'}, + 'xlf': {'text', 'xml', 'xliff'}, + 'xliff': {'text', 'xml', 'xliff'}, 'xml': {'text', 'xml'}, 'xq': {'text', 'xquery'}, 'xql': {'text', 'xquery'},