crowdin: Initial changes for 15.1

Change-Id: I7cf2272b0a2e903353af7d4de9480c1e0eb9b0da
diff --git a/crowdin_sync.py b/crowdin_sync.py
index 54c77a7..6295de6 100755
--- a/crowdin_sync.py
+++ b/crowdin_sync.py
@@ -351,11 +351,13 @@
     if xml_extra is None:
         sys.exit(1)
 
-    xml_cm = load_xml(x='%s/android/snippets/cm.xml' % base_path)
-    if xml_cm is None:
-        xml_cm = load_xml(x='%s/android/snippets/hal_cm_all.xml' % base_path)
-    if xml_cm is not None:
-        xml_files = (xml_android, xml_cm, xml_extra)
+    xml_snippet = load_xml(x='%s/android/snippets/lineage.xml' % base_path)
+    if xml_snippet is None:
+        xml_snippet = load_xml(x='%s/android/snippets/cm.xml' % base_path)
+    if xml_snippet is None:
+        xml_snippet = load_xml(x='%s/android/snippets/hal_cm_all.xml' % base_path)
+    if xml_snippet is not None:
+        xml_files = (xml_android, xml_snippet, xml_extra)
     else:
         xml_files = (xml_android, xml_extra)