-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added localization language support #405
Merged
Merged
Changes from 25 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
ea89880
Updated .gitignore file
macagua 7dadea5
Added i18n support using Babel and Spanish translation
macagua be27427
Revert commit ea89880
4cff61f
Updated way how import babel library to use for as command class options
macagua 8f21fd0
Removed sphinx.mo file
macagua 3329e09
Removed Sphinx and Babel command class from setup.py file and added a…
macagua 15d2198
Check spell
macagua fc9dfa5
Merge branch 'master' into master
Blendify 4b1ff78
Merge branch 'master' into master
Blendify 447b195
Merge branch 'master' into master
Blendify d05b2a9
Merge branch 'master' into master
Blendify bbc5394
Merge branch 'master' into master
Blendify 2858a0a
Merge branch 'master' of https://github.com/rtfd/sphinx_rtd_theme
Blendify 81cd11d
Revert unrelated changes
Blendify cadb79f
Update translations catalogs
Blendify a4fd6e0
Docs: Move translation file
Blendify bbaef3a
Updated .gitignore file
macagua c35a4eb
Updated translations guide section
macagua bba0eed
Updated Babel configurations
macagua 45b72fa
Added more improvements about i18n support for templates
macagua 326a12e
Moved into sphinx_rtd_theme the locale directory
macagua 9c59240
Updated .gitignore file
macagua 5ddbabd
Added more details informations about translations guide
macagua e53c739
Fixed some typo
macagua cb18bac
Updated changelog file~
macagua e6008ce
Removed output commands examples
macagua 8e83530
Added more improvements about i18n from Pull request reviews
macagua 9b0215c
Updated translation guite with the Pull request reviews
macagua 50f7c8b
Revert the original value for pygments_style to default
macagua 3b50dc0
Updated with more improvements translations guide
macagua ae8debe
Added and enabled add_message_catalog for theme using Sphinx 1.8.0
macagua 2f190b6
Updated Spanish translation
macagua 693454d
Added Sphinx 1.8.0 support for the testing on Travis-CI
macagua f955d33
Moved requirements install command from tox file into travis file and
macagua ad66515
Merge branch 'master' into master
Blendify 83b8084
Merge branch 'master' into master
Blendify 71c6d8e
Requirements: Used numbered version
Blendify cd34154
Update changelog.rst
Blendify fffca44
Remove bad import
Blendify ab89bb1
Revert change
Blendify 8ac4638
Delete requirements.txt
Blendify 8992188
Remove requirements file thats not needed
Blendify 7050db0
Merge branch 'master' into master
Blendify f9a2fe4
Update .travis.yml
Blendify File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
*.pyc | ||
*.egg-info | ||
*.egg | ||
*.mo | ||
*build/ | ||
.tox | ||
.coverage | ||
*.DS_Store | ||
*.sass-cache | ||
.ropeproject/ | ||
.ruby-version | ||
bin/ | ||
dist/ | ||
bower_components/ | ||
include/ | ||
lib/ | ||
local/ | ||
node_modules | ||
npm-debug.log | ||
package-lock.json | ||
pip-selfcheck.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# How setup this file | ||
# http://babel.pocoo.org/en/latest/setup.html | ||
# this file description: | ||
# http://babel.pocoo.org/en/latest/messages.html#extraction-method-mapping-and-configuration | ||
|
||
# Extraction from Jinja2 HTML templates | ||
[jinja2: **/**.html] | ||
encoding = utf-8 | ||
ignore_tags = script,style | ||
include_attrs = alt title summary placeholder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
configuring | ||
changelog | ||
contributing | ||
translations | ||
|
||
|
||
.. toctree:: | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are mo files supposed to be distributed on Pypi? I thought they were built when sphinx runs.