Skip to content

Instantly share code, notes, and snippets.

<svg height="100%" width="100%" viewBox="0 0 1200 598" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink= "http://www.w3.org/1999/xlink">
<image xlink:href="//dxuu1kmv6dm3n.cloudfront.net/frontpage/old_way_arrows.png" x="200" y="0" height="598px" width="800px"/>
<text x="530" y="110" text-anchor="end" font-family="'Bad Script', cursive" font-size="35">
{% trans "Cut'n'pasting" %}
</text>
<text x="320" y="275" text-anchor="end" font-family="'Bad Script', cursive" font-size="35">
{% trans "Manual work" %}
</text>
<?xml version="1.0"?>
<tmx version="1.4">
<header adminlang="EN-US" creationtool="MTK2" datatype="" o-tmf="xliff" srclang="en-gb">
</header>
<body>
<tu tuid="n__0J3UkAHU6fnxzp7VASKA_File manager_lv1">
<prop type="Att::id">n__0J3UkAHU6fnxzp7VASKA_File manager_lv1</prop>
<tuv xml:lang="en-US">
<seg>Move selection to</seg>
</tuv>
@pmuilu
pmuilu / pull-translations.java
Created March 17, 2012 20:49
Get Localization Java API: How to pull translations
GLProject project = new GLProject("myProject",
"username",
"password");
GLTranslations translations = new GLTranslations(project);
try {
translations.pull("/my/directory");
} catch (GLException e) {
// Handle exception, e.g. wrong username/password
@pmuilu
pmuilu / push-master.java
Created March 17, 2012 20:44
Get Localization Java API: How to push master file
GLProject project = new GLProject("projectName",
"username",
"password");
GLMasterFile masterFile = new GLMasterFile(project, "values/strings.xml", "android");
try {
masterFile.push();
} catch (GLException e) {
// Handle exception, e.g. wrong username/password