Skip to content

Commit

Permalink
Merge pull request #79 from ranophoenix/fix_cpe
Browse files Browse the repository at this point in the history
Adjustments for Portuguese version
  • Loading branch information
fredj authored Jul 8, 2017
2 parents 04444c2 + 4ec2950 commit 057c0ea
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 28 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ cache:
directories:
- node_modules
before_deploy:
- npm run archive:en && npm run archive:fr
- npm run archive:en && npm run archive:fr && npm run archive:pt
deploy:
provider: releases
api_key:
secure: ag2ObhNaZYbULIABDARbHyvqk9DChYg6j6HZUmocdfM4Go/MF/OckpR0VntiMKpv+eQ8vdmTyRWVcW4Y/B+AOkMs/fhRs4rYOLq7BXWyLLbcvNaXP+3n6HDB/RZBPcNCYdQUo+oDDOyk7W9vF5T3o4aKlXFRLQIVQgABrwEQC1I=
file:
- openlayers-workshop-en.zip
- openlayers-workshop-fr.zip
- openlayers-workshop-pt.zip
on:
repo: openlayers/workshop
tags: true
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"build": "npm run clean && npm run doc:build",
"archive:en": "npm run build && cp src/en/README.md build/openlayers-workshop/en/ && cd build && rm -rf openlayers-workshop/gitbook openlayers-workshop/index.html openlayers-workshop/search_index.json && mv openlayers-workshop/en openlayers-workshop-en && rm -rf openlayers-workshop && zip -FSr ../openlayers-workshop-en.zip openlayers-workshop-en",
"archive:fr": "npm run build && cp src/fr/README.md build/openlayers-workshop/fr/ && cd build && rm -rf openlayers-workshop/gitbook openlayers-workshop/index.html openlayers-workshop/search_index.json && mv openlayers-workshop/fr openlayers-workshop-fr && rm -rf openlayers-workshop && zip -FSr ../openlayers-workshop-fr.zip openlayers-workshop-fr",
"archive:pt": "npm run build && cp src/fr/README.md build/openlayers-workshop/pt/ && cd build && rm -rf openlayers-workshop/gitbook openlayers-workshop/index.html openlayers-workshop/search_index.json && mv openlayers-workshop/pt openlayers-workshop-pt && rm -rf openlayers-workshop && zip -FSr ../openlayers-workshop-pt.zip openlayers-workshop-pt",
"archive:pt": "npm run build && cp src/pt/README.md build/openlayers-workshop/pt/ && cd build && rm -rf openlayers-workshop/gitbook openlayers-workshop/index.html openlayers-workshop/search_index.json && mv openlayers-workshop/pt openlayers-workshop-pt && rm -rf openlayers-workshop && zip -FSr ../openlayers-workshop-pt.zip openlayers-workshop-pt",
"deploy": "npm run build && gh-pages --dist build/openlayers-workshop"
},
"dependencies": {
Expand Down
3 changes: 2 additions & 1 deletion src/LANGS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Languages

* [English](en/)
* [Français](fr/)
* [Français](fr/)
* [Português](pt/)
46 changes: 23 additions & 23 deletions src/pt/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
# Summary
# Sumário

* [Basics](basics/README.md)
* [Creating a map](basics/map.md)
* [Dissecting your map](basics/dissect.md)
* [Resources](basics/resources.md)
* [O Básico](basics/README.md)
* [Criando um mapa](basics/map.md)
* [Dissecando o seu mapa](basics/dissect.md)
* [Recursos úteis](basics/resources.md)

* [Layers and Sources](layers/README.md)
* [WMS sources](layers/wms.md)
* [Tiled sources](layers/cached.md)
* [Proprietary tile providers](layers/proprietary.md)
* [Vector data](layers/vector.md)
* [Image vector source](layers/imagevector.md)
* [Camadas e Fontes de Dados](layers/README.md)
* [Fontes WMS](layers/wms.md)
* [Fontes de blocos de dados de imagem (`tiles`)](layers/cached.md)
* [Fornecedores proprietários de blocos de dados de imagem](layers/proprietary.md)
* [Dados vetoriais](layers/vector.md)
* [Fontes de imagens vetoriais](layers/imagevector.md)

* [Controls](controls/README.md)
* [Scale line control](controls/scaleline.md)
* [Select interaction](controls/select.md)
* [Draw interaction](controls/draw.md)
* [Modify interaction](controls/modify.md)
* [Controles e Interações](controls/README.md)
* [Controle `ScaleLine`](controls/scaleline.md)
* [Interação `Select`](controls/select.md)
* [Interação `Draw`](controls/draw.md)
* [Interação `Modify`](controls/modify.md)

* [Vector Topics](vector/README.md)
* [Formats](vector/formats.md)
* [Styling concepts](vector/style-intro.md)
* [Custom styles](vector/style.md)
* [Tópicos sobre Vetores](vector/README.md)
* [Formatos](vector/formats.md)
* [Estilos](vector/style-intro.md)
* [Personalização de estilos](vector/style.md)

* [Custom Builds](custom-builds/README.md)
* [Concepts](custom-builds/concepts.md)
* [Create custom builds](custom-builds/create.md)
* [`Builds` Personalizados](custom-builds/README.md)
* [Conceitos](custom-builds/concepts.md)
* [Criar `builds` personalizados](custom-builds/create.md)
2 changes: 1 addition & 1 deletion src/pt/controls/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Controles e interações
# Controles e Interações

* [Controle `ScaleLine`](scaleline.md)
* [Interação `Select`](select.md)
Expand Down
2 changes: 1 addition & 1 deletion src/pt/layers/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Layers and Sources
# Camadas e Fontes de Dados

* [Fontes WMS](wms.md)
* [Fontes de blocos de dados de imagem (`tiles`)](cached.md)
Expand Down

0 comments on commit 057c0ea

Please sign in to comment.