translation.html 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>Translation &mdash; searx 0.8.0 documentation</title>
  7. <link rel="stylesheet" href="../_static/style.css" type="text/css" />
  8. <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
  9. <script type="text/javascript">
  10. var DOCUMENTATION_OPTIONS = {
  11. URL_ROOT: '../',
  12. VERSION: '0.8.0',
  13. COLLAPSE_INDEX: false,
  14. FILE_SUFFIX: '.html',
  15. HAS_SOURCE: true
  16. };
  17. </script>
  18. <script type="text/javascript" src="../_static/jquery.js"></script>
  19. <script type="text/javascript" src="../_static/underscore.js"></script>
  20. <script type="text/javascript" src="../_static/doctools.js"></script>
  21. <link rel="top" title="searx 0.8.0 documentation" href="../index.html" />
  22. <link rel="prev" title="Plugins" href="plugins.html" />
  23. <link media="only screen and (max-device-width: 480px)" href="../_static/small_flask.css" type= "text/css" rel="stylesheet" />
  24. <meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
  25. </head>
  26. <body role="document">
  27. <div class="document">
  28. <div class="documentwrapper">
  29. <div class="bodywrapper">
  30. <div class="body" role="main">
  31. <div class="section" id="translation">
  32. <h1>Translation<a class="headerlink" href="#translation" title="Permalink to this headline">¶</a></h1>
  33. <p>run these commands in the root directory of searx</p>
  34. <div class="section" id="add-new-language">
  35. <h2>Add new language<a class="headerlink" href="#add-new-language" title="Permalink to this headline">¶</a></h2>
  36. <div class="code shell highlight-python"><div class="highlight"><pre>pybabel init -i messages.pot -d searx/translations -l it
  37. </pre></div>
  38. </div>
  39. </div>
  40. <div class="section" id="update-po-files">
  41. <h2>Update .po files<a class="headerlink" href="#update-po-files" title="Permalink to this headline">¶</a></h2>
  42. <div class="code shell highlight-python"><div class="highlight"><pre>./utils/update-translations.sh
  43. </pre></div>
  44. </div>
  45. <p>You may have errors here. In that case, edit the
  46. <code class="docutils literal"><span class="pre">update-translations.sh</span></code> script to change <code class="docutils literal"><span class="pre">pybabel</span></code> to
  47. <code class="docutils literal"><span class="pre">pybabel-python2</span></code> or <code class="docutils literal"><span class="pre">pybabel2</span></code></p>
  48. <p>After this step, you can modify the .po files.</p>
  49. </div>
  50. <div class="section" id="compile-translations">
  51. <h2>Compile translations<a class="headerlink" href="#compile-translations" title="Permalink to this headline">¶</a></h2>
  52. <div class="code shell highlight-python"><div class="highlight"><pre>pybabel compile -d searx/translations
  53. </pre></div>
  54. </div>
  55. </div>
  56. <div class="section" id="transifex-stuff">
  57. <h2>Transifex stuff<a class="headerlink" href="#transifex-stuff" title="Permalink to this headline">¶</a></h2>
  58. <div class="section" id="init-project">
  59. <h3>Init Project<a class="headerlink" href="#init-project" title="Permalink to this headline">¶</a></h3>
  60. <div class="code shell highlight-python"><div class="highlight"><pre>tx init # Transifex instance: https://www.transifex.com/asciimoo/searx/
  61. tx set --auto-local -r searx.messagespo &#39;searx/translations/&lt;lang&gt;/LC_MESSAGES/messages.po&#39; \
  62. --source-lang en --type PO --source-file messages.pot --execute
  63. </pre></div>
  64. </div>
  65. <p><a class="reference external" href="http://docs.transifex.com/client/init/">http://docs.transifex.com/client/init/</a></p>
  66. <p><a class="reference external" href="http://docs.transifex.com/client/set/">http://docs.transifex.com/client/set/</a></p>
  67. </div>
  68. <div class="section" id="get-translations">
  69. <h3>Get translations<a class="headerlink" href="#get-translations" title="Permalink to this headline">¶</a></h3>
  70. <div class="code shell highlight-python"><div class="highlight"><pre>tx pull -a
  71. </pre></div>
  72. </div>
  73. <p><a class="reference external" href="http://docs.transifex.com/client/pull">http://docs.transifex.com/client/pull</a></p>
  74. </div>
  75. <div class="section" id="upload-source-file">
  76. <h3>Upload source File<a class="headerlink" href="#upload-source-file" title="Permalink to this headline">¶</a></h3>
  77. <div class="code shell highlight-python"><div class="highlight"><pre>tx push -s
  78. </pre></div>
  79. </div>
  80. </div>
  81. <div class="section" id="upload-all-translation">
  82. <h3>Upload all Translation<a class="headerlink" href="#upload-all-translation" title="Permalink to this headline">¶</a></h3>
  83. <div class="code shell highlight-python"><div class="highlight"><pre>tx push -s -t
  84. </pre></div>
  85. </div>
  86. </div>
  87. </div>
  88. <div class="section" id="upload-specifc-translation">
  89. <h2>upload specifc Translation<a class="headerlink" href="#upload-specifc-translation" title="Permalink to this headline">¶</a></h2>
  90. <div class="code shell highlight-python"><div class="highlight"><pre>tx push -t -l tr
  91. </pre></div>
  92. </div>
  93. <p><a class="reference external" href="http://docs.transifex.com/client/push">http://docs.transifex.com/client/push</a></p>
  94. </div>
  95. </div>
  96. </div>
  97. </div>
  98. </div>
  99. <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
  100. <div class="sphinxsidebarwrapper"><div class="sidebar_container body">
  101. <h1>Searx</h1>
  102. <ul>
  103. <li><a href="../index.html">Home</a></li>
  104. <li><a href="https://github.com/asciimoo/searx">Source</a></li>
  105. <li><a href="https://github.com/asciimoo/searx/wiki">Wiki</a></li>
  106. <li><a href="https://github.com/asciimoo/searx/wiki/Searx-instances">Public instances</a></li>
  107. </ul>
  108. <hr />
  109. <ul>
  110. <li><a href="https://twitter.com/Searx_engine">Twitter</a></li>
  111. <li><a href="https://flattr.com/submit/auto?user_id=asciimoo&url=https://github.com/asciimoo/searx&title=searx&language=&tags=github&category=software">Flattr</a></li>
  112. <li><a href="https://gratipay.com/searx">Gratipay</a></li>
  113. </ul>
  114. </div>
  115. </div>
  116. </div>
  117. <div class="clearer"></div>
  118. </div>
  119. <div class="footer">
  120. &copy; Copyright 2015, Adam Tauber.
  121. </div>
  122. </body>
  123. </html>