Start locales

This commit is contained in:
Mauricio Baeza 2021-02-05 22:24:30 -06:00
parent f56142d4bf
commit dd50b6ba4a
13 changed files with 330 additions and 7 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

42
doc/build/gettext/index.pot vendored Normal file
View File

@ -0,0 +1,42 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2021, Mauricio Baeza
# This file is distributed under the same license as the ZAZ package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: ZAZ \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-05 22:20-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../source/index.rst:9
#: ../../source/index.rst:9
msgid "Contents:"
msgstr ""
#: ../../source/index.rst:7
msgid "Welcome to ZAZ's documentation!"
msgstr ""
#: ../../source/index.rst:17
msgid "Indices and tables"
msgstr ""
#: ../../source/index.rst:19
msgid ":ref:`genindex`"
msgstr ""
#: ../../source/index.rst:20
msgid ":ref:`modindex`"
msgstr ""
#: ../../source/index.rst:21
msgid ":ref:`search`"
msgstr ""

117
doc/build/gettext/main/intro.pot vendored Normal file
View File

@ -0,0 +1,117 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2021, Mauricio Baeza
# This file is distributed under the same license as the ZAZ package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: ZAZ \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-05 22:20-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../source/main/intro.rst:3
msgid "Introduction"
msgstr ""
#: ../../source/main/intro.rst:6
msgid "Overview"
msgstr ""
#: ../../source/main/intro.rst:8
msgid "ZAZ is a script for rapid develop extensions and macros for `LibreOffice`_, in `Python`_ of course."
msgstr ""
#: ../../source/main/intro.rst:11
msgid "With ZAZ, you can create:"
msgstr ""
#: ../../source/main/intro.rst:13
msgid "Extensions for final user"
msgstr ""
#: ../../source/main/intro.rst:14
msgid "New components for used from Basic"
msgstr ""
#: ../../source/main/intro.rst:15
msgid "AddIn, new functions for Calc"
msgstr ""
#: ../../source/main/intro.rst:19
msgid "Requirements"
msgstr ""
#: ../../source/main/intro.rst:21
msgid "Python 3.7+"
msgstr ""
#: ../../source/main/intro.rst:22
msgid "LibreOffice 7.0+ with support for macros Python"
msgstr ""
#: ../../source/main/intro.rst:23
msgid "LibreOffice SDK, for new components and Add-In"
msgstr ""
#: ../../source/main/intro.rst:27
msgid "Installation"
msgstr ""
#: ../../source/main/intro.rst:29
msgid "Clone this repository (recomended) or download it."
msgstr ""
#: ../../source/main/intro.rst:31
msgid "``git clone https://git.cuates.net/elmau/zaz.git``"
msgstr ""
#: ../../source/main/intro.rst:33
msgid "Move to."
msgstr ""
#: ../../source/main/intro.rst:35
msgid "``cd zaz/source``"
msgstr ""
#: ../../source/main/intro.rst:37
msgid "Start new extension."
msgstr ""
#: ../../source/main/intro.rst:39
msgid "``./zaz.py -new -t ~/projects -n MyFirstExtension``"
msgstr ""
#: ../../source/main/intro.rst:43
msgid "My first extension"
msgstr ""
#: ../../source/main/intro.rst:45
msgid "Move to:"
msgstr ""
#: ../../source/main/intro.rst:47
msgid "``cd ~/projects/MyFirstExtension``"
msgstr ""
#: ../../source/main/intro.rst:49
msgid "Create:"
msgstr ""
#: ../../source/main/intro.rst:51
msgid "``python zaz.py -c``::"
msgstr ""
#: ../../source/main/intro.rst:60
msgid "Install and test:"
msgstr ""
#: ../../source/main/intro.rst:62
msgid "``python zaz.py -i``::"
msgstr ""

View File

@ -36,7 +36,7 @@ Installation
* Start new extension.
``./zaz.py -new -t ~/projects -n TestExt``
``./zaz.py -new -t ~/projects -n MyFirstExtension``
My first extension
@ -44,7 +44,7 @@ My first extension
* Move to:
``cd ~/projects/TestExt``
``cd ~/projects/MyFirstExtension``
* Create:

View File

@ -65,14 +65,14 @@
<ul class="simple">
<li><p>Start new extension.</p></li>
</ul>
<p><code class="docutils literal notranslate"><span class="pre">./zaz.py</span> <span class="pre">-new</span> <span class="pre">-t</span> <span class="pre">~/projects</span> <span class="pre">-n</span> <span class="pre">TestExt</span></code></p>
<p><code class="docutils literal notranslate"><span class="pre">./zaz.py</span> <span class="pre">-new</span> <span class="pre">-t</span> <span class="pre">~/projects</span> <span class="pre">-n</span> <span class="pre">MyFirstExtension</span></code></p>
</div>
<div class="section" id="my-first-extension">
<h2>My first extension<a class="headerlink" href="#my-first-extension" title="Permalink to this headline"></a></h2>
<ul class="simple">
<li><p>Move to:</p></li>
</ul>
<p><code class="docutils literal notranslate"><span class="pre">cd</span> <span class="pre">~/projects/TestExt</span></code></p>
<p><code class="docutils literal notranslate"><span class="pre">cd</span> <span class="pre">~/projects/MyFirstExtension</span></code></p>
<ul class="simple">
<li><p>Create:</p></li>
</ul>

View File

@ -1 +1 @@
Search.setIndex({docnames:["index","main/intro"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,sphinx:56},filenames:["index.rst","main/intro.rst"],objects:{},objnames:{},objtypes:{},terms:{"2021":1,"final":1,"function":1,"new":1,With:1,add:1,addin:1,basic:1,calc:1,can:1,clone:1,com:[],compon:1,compress:1,content:0,copi:1,cours:1,creat:1,cuat:1,develop:1,directori:1,domain:1,don:1,done:1,download:1,elmau:1,extens:0,file:1,first:0,forget:1,from:1,gener:1,git:1,gitlab:[],http:1,index:0,info:1,instal:0,introduct:0,libreoffic:1,libreofric:[],local:1,macro:1,make:1,mauriciobaeza:[],modul:0,move:1,myfirstextens:1,myfirstextension_v0:1,net:1,now:1,overview:0,oxt:1,page:0,pot:1,project:1,python:1,rapid:1,recomend:1,repositori:1,requir:0,script:1,sdk:1,search:0,sourc:1,start:1,successfulli:1,sucesfulli:1,support:1,test:1,testext:1,thi:1,unopkg:1,used:1,user:1,you:1,zaz:1},titles:["Welcome to ZAZ\u2019s documentation!","Introduction"],titleterms:{document:0,extens:1,first:1,indic:0,instal:1,introduct:1,overview:1,requir:1,tabl:0,welcom:0,zaz:0}})
Search.setIndex({docnames:["index","main/intro"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,sphinx:56},filenames:["index.rst","main/intro.rst"],objects:{},objnames:{},objtypes:{},terms:{"2021":1,"final":1,"function":1,"new":1,With:1,add:1,addin:1,basic:1,calc:1,can:1,clone:1,com:[],compon:1,compress:1,content:0,copi:1,cours:1,creat:1,cuat:1,develop:1,directori:1,domain:1,don:1,done:1,download:1,elmau:1,extens:0,file:1,first:0,forget:1,from:1,gener:1,git:1,gitlab:[],http:1,index:0,info:1,instal:0,introduct:0,libreoffic:1,libreofric:[],local:1,macro:1,make:1,mauriciobaeza:[],modul:0,move:1,myfirstextens:1,myfirstextension_v0:1,net:1,now:1,overview:0,oxt:1,page:0,pot:1,project:1,python:1,rapid:1,recomend:1,repositori:1,requir:0,script:1,sdk:1,search:0,sourc:1,start:1,successfulli:1,sucesfulli:1,support:1,test:1,testext:[],thi:1,unopkg:1,used:1,user:1,you:1,zaz:1},titles:["Welcome to ZAZ\u2019s documentation!","Introduction"],titleterms:{document:0,extens:1,first:1,indic:0,instal:1,introduct:1,overview:1,requir:1,tabl:0,welcom:0,zaz:0}})

View File

@ -0,0 +1,43 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2021, Mauricio Baeza
# This file is distributed under the same license as the ZAZ package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: ZAZ \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-05 22:20-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.9.0\n"
#: ../../source/index.rst:9
msgid "Contents:"
msgstr ""
#: ../../source/index.rst:7
msgid "Welcome to ZAZ's documentation!"
msgstr ""
#: ../../source/index.rst:17
msgid "Indices and tables"
msgstr ""
#: ../../source/index.rst:19
msgid ":ref:`genindex`"
msgstr ""
#: ../../source/index.rst:20
msgid ":ref:`modindex`"
msgstr ""
#: ../../source/index.rst:21
msgid ":ref:`search`"
msgstr ""

View File

@ -0,0 +1,121 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2021, Mauricio Baeza
# This file is distributed under the same license as the ZAZ package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: ZAZ \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-05 22:20-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.9.0\n"
#: ../../source/main/intro.rst:3
msgid "Introduction"
msgstr ""
#: ../../source/main/intro.rst:6
msgid "Overview"
msgstr ""
#: ../../source/main/intro.rst:8
msgid ""
"ZAZ is a script for rapid develop extensions and macros for "
"`LibreOffice`_, in `Python`_ of course."
msgstr ""
#: ../../source/main/intro.rst:11
msgid "With ZAZ, you can create:"
msgstr ""
#: ../../source/main/intro.rst:13
msgid "Extensions for final user"
msgstr ""
#: ../../source/main/intro.rst:14
msgid "New components for used from Basic"
msgstr ""
#: ../../source/main/intro.rst:15
msgid "AddIn, new functions for Calc"
msgstr ""
#: ../../source/main/intro.rst:19
msgid "Requirements"
msgstr ""
#: ../../source/main/intro.rst:21
msgid "Python 3.7+"
msgstr ""
#: ../../source/main/intro.rst:22
msgid "LibreOffice 7.0+ with support for macros Python"
msgstr ""
#: ../../source/main/intro.rst:23
msgid "LibreOffice SDK, for new components and Add-In"
msgstr ""
#: ../../source/main/intro.rst:27
msgid "Installation"
msgstr ""
#: ../../source/main/intro.rst:29
msgid "Clone this repository (recomended) or download it."
msgstr ""
#: ../../source/main/intro.rst:31
msgid "``git clone https://git.cuates.net/elmau/zaz.git``"
msgstr ""
#: ../../source/main/intro.rst:33
msgid "Move to."
msgstr ""
#: ../../source/main/intro.rst:35
msgid "``cd zaz/source``"
msgstr ""
#: ../../source/main/intro.rst:37
msgid "Start new extension."
msgstr ""
#: ../../source/main/intro.rst:39
msgid "``./zaz.py -new -t ~/projects -n MyFirstExtension``"
msgstr ""
#: ../../source/main/intro.rst:43
msgid "My first extension"
msgstr ""
#: ../../source/main/intro.rst:45
msgid "Move to:"
msgstr ""
#: ../../source/main/intro.rst:47
msgid "``cd ~/projects/MyFirstExtension``"
msgstr ""
#: ../../source/main/intro.rst:49
msgid "Create:"
msgstr ""
#: ../../source/main/intro.rst:51
msgid "``python zaz.py -c``::"
msgstr ""
#: ../../source/main/intro.rst:60
msgid "Install and test:"
msgstr ""
#: ../../source/main/intro.rst:62
msgid "``python zaz.py -i``::"
msgstr ""

View File

@ -36,7 +36,7 @@ Installation
* Start new extension.
``./zaz.py -new -t ~/projects -n TestExt``
``./zaz.py -new -t ~/projects -n MyFirstExtension``
My first extension
@ -44,7 +44,7 @@ My first extension
* Move to:
``cd ~/projects/TestExt``
``cd ~/projects/MyFirstExtension``
* Create: