-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (38 loc) · 1.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Use the title from a page's frontmatter if it has one -->
<title>Air Strings</title>
<link href="/stylesheets/site.css" rel="stylesheet" />
<script src="/javascripts/site.js"></script>
</head>
<body>
<h1><img src="/images/icon-400x400.png" width="200px" height="200px"/><br/>Air Strings</h1>
<ol>
<li><h3>Install CLI</h3><p>
<pre><code>
$ brew install mint
$ mint install airstrings
</code></pre>
</p></li>
<li><h3>Push <code>Localizable.strings</code> to Google Sheets</h3><p>
<pre><code>
$ airstrings push --spreadhseetId <GOOGLE_SPREADSHEET_ID> --path ./en/Localizable.strings --tabName "es/Localizable.strings"
</code></pre>
</p></li>
<li><h3>Translate in Google Sheets</h3><p>
Share, collaborate, automate etc.
</p></li>
<li><h3>Pull <code>Localizable.strings</code> from Google Sheets</h3><p>
<pre><code>
$ airstrings pull --spreadhseetId <GOOGLE_SPREADSHEET_ID> --tabName "es/Localizable.strings" --path ./es/Localizable.strings
</code></pre>
</p></li>
</ol>
<a href="https://github.com/CirkusApp/airstrings.github.io/tree/middleman">Edit</a>
</body>
</html>