Skip to content

Commit 76ea977

Browse files
committedSep 29, 2019
[MIG] Add metafiles
[skip ci]
0 parents  commit 76ea977

File tree

3 files changed

+112
-0
lines changed

3 files changed

+112
-0
lines changed
 

‎.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
5+
# C extensions
6+
*.so
7+
8+
# Distribution / packaging
9+
.Python
10+
env/
11+
bin/
12+
build/
13+
develop-eggs/
14+
dist/
15+
eggs/
16+
lib/
17+
lib64/
18+
parts/
19+
sdist/
20+
var/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
25+
# Installer logs
26+
pip-log.txt
27+
pip-delete-this-directory.txt
28+
29+
# Unit test / coverage reports
30+
htmlcov/
31+
.tox/
32+
.coverage
33+
.cache
34+
nosetests.xml
35+
coverage.xml
36+
37+
# Translations
38+
*.mo
39+
40+
# Pycharm
41+
.idea
42+
43+
# Mr Developer
44+
.mr.developer.cfg
45+
.project
46+
.pydevproject
47+
48+
# Rope
49+
.ropeproject
50+
51+
# Sphinx documentation
52+
docs/_build/
53+
54+
# Backup files
55+
*~
56+
*.swp

‎.travis.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
language: python
2+
3+
python:
4+
- "3.5"
5+
6+
sudo: false
7+
cache: pip
8+
9+
addons:
10+
postgresql: "9.6"
11+
apt:
12+
packages:
13+
- expect-dev # provides unbuffer utility
14+
- python-lxml # because pip installation is slow
15+
- python-xlrd
16+
17+
env:
18+
global:
19+
- VERSION="13.0" TESTS="0" LINT_CHECK="0" MAKEPOT="0"
20+
matrix:
21+
- LINT_CHECK="1"
22+
- TESTS="1" ODOO_REPO="OCA/OCB"
23+
- TESTS="1" ODOO_REPO="odoo/odoo" MAKEPOT="1"
24+
25+
26+
install:
27+
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
28+
- export PATH=${HOME}/maintainer-quality-tools/travis:${PATH}
29+
- travis_install_nightly
30+
31+
script:
32+
- travis_wait travis_run_tests
33+
34+
after_success:
35+
- travis_after_tests_success

‎README.md

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
![Licence](https://img.shields.io/badge/licence-AGPL--3-blue.svg)
2+
[![Runbot Status](https://runbot.odoo-community.org/runbot/badge/flat/238/13.0.svg)](https://runbot.odoo-community.org/runbot/repo/esyshub.st101.workers.dev-oca-l10n-thailand-238)
3+
[![Build Status](https://travis-ci.org/OCA/l10n-thailand.svg?branch=13.0)](https://travis-ci.org/OCA/l10n-thailand)
4+
5+
6+
Odoo Thai Localization
7+
======================
8+
9+
Repository นี้เป็นที่สำหรับพัฒนาและจัดเก็บโมดูลต่างๆที่เกี่ยวข้องกับ Thai Localization โดยเฉพาะที่เกี่ยวข้องกับบัญชีและภาษีไทย
10+
11+
โดยผลงานทั้งหมดที่เกิดขึ้นที่นี่เป็นการทำงานแบบอาสาสมัครและการแบ่งปัน หากท่านต้องการมีส่วนร่วมในการแบ่งปันไอเดีย,เขียนโค้ด, การช่วยทดสอบ หรือให้ข้อเสนอแนะใดๆ
12+
13+
ท่านสามารถเปิด Issue ได้ที่นี่เลย https://github.com/OCA/l10n-thailand/issues
14+
15+
สำหรับคำถามเกี่ยวกับการทำงานหรือการช่วยเหลือในชุมชนผู้ใช้ Odoo ไทย ติดต่อที่:
16+
17+
https://www.ocathailand.org/forum/1
18+
19+
Translation Status
20+
------------------
21+
[![Transifex Status](https://www.transifex.com/projects/p/OCA-l10n-thailand-13-0/chart/image_png)](https://www.transifex.com/projects/p/OCA-l10n-thailand-13-0)

0 commit comments

Comments
 (0)
Please sign in to comment.