Skip to content

Instantly share code, notes, and snippets.

@devster
Created March 31, 2014 09:40
Show Gist options
  • Save devster/9888835 to your computer and use it in GitHub Desktop.
Save devster/9888835 to your computer and use it in GitHub Desktop.
Trans unit xliff sublime text snippet
<snippet>
<content><![CDATA[
<trans-unit>
<source>${1:Source}</source>
<target>${2:Target}</target>
</trans-unit>
]]></content>
<tabTrigger>transunit</tabTrigger>
<scope>text.xliff</scope>
</snippet>
@nicolasbrugneaux
Copy link

<snippet>
    <content><![CDATA[
<trans-unit>
    <source>${1:Source}</source>
    <target>${2:Target}</target>
</trans-unit>
]]></content>
    <tabTrigger>transunit</tabTrigger>
    <scope>source.xliff</scope>
</snippet>

would work I think

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment