-
-
Notifications
You must be signed in to change notification settings - Fork 278
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #573 from iled/i18n/help
add nls support to the help widget
- Loading branch information
Showing
4 changed files
with
102 additions
and
27 deletions.
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
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,36 @@ | ||
define({ | ||
link: 'Ajuda', | ||
navigation: { | ||
title: 'Navegação', | ||
description: 'Navegação no mapa usando o rato e o teclado', | ||
pan1: 'Arrastar para mover', | ||
recenter: 'SHIFT + Clique para centrar', | ||
zoomIn1: 'SHIFT + Arrastar para aproximar à área', | ||
zoomOut1: 'SHIFT + CTRL + Arrastar para afastar', | ||
zoomIn2: 'Mover roda de deslocação do rato para a frente para aproximar', | ||
zoomOut2: 'Mover roda de deslocação do rato para trás para afastar', | ||
pan2: 'Teclas de seta para mover', | ||
zoomInLevel: 'Tecla + para aproximar um nível', | ||
zoomOutLevel: 'Tecla - para afastar um nível', | ||
zoomCenter: 'Duplo clique para centrar e aproximar' | ||
}, | ||
search: { | ||
title: 'Pesquisa', | ||
description: 'A caixa de pesquisa suporta vários tipos de pesquisa:', | ||
address: 'Pesquisar por endereço', | ||
place: 'Pesquisar por nome do local', | ||
etc: 'Pesquisar por código postal, região, etc.' | ||
}, | ||
tools: { | ||
title: 'Ferramentas', | ||
description: 'Além das funcionalidades de pesquisa, são incluídas as seguintes ferramentas:', | ||
measure: { | ||
title: 'Medir', | ||
description: 'A ferramenta de medição permite desenhar um ponto, linha, ou polígono, no mapa e especificar a unidade de medida.' | ||
}, | ||
print: { | ||
title: 'Imprimir', | ||
description: 'Este mapa pode ser exportado para diferentes formatos e modelos.' | ||
} | ||
} | ||
}); |
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,39 @@ | ||
define({ | ||
root: { | ||
link: 'Help', | ||
navigation: { | ||
title: 'Navigation', | ||
description: 'Map navigation using mouse and keyboard:', | ||
pan1: 'Drag to pan', | ||
recenter: 'SHIFT + Click to recenter', | ||
zoomIn1: 'SHIFT + Drag to zoom in', | ||
zoomOut1: 'SHIFT + CTRL + Drag to zoom out', | ||
zoomIn2: 'Mouse Scroll Forward to zoom in', | ||
zoomOut2: 'Mouse Scroll Backward to zoom out', | ||
pan2: 'Use Arrow keys to pan', | ||
zoomInLevel: '+ key to zoom in a level', | ||
zoomOutLevel: '- key to zoom out a level', | ||
zoomCenter: 'Double Click to Center and Zoom in' | ||
}, | ||
search: { | ||
title: 'Search', | ||
description: 'A variety of searches can be performed in the search box:', | ||
address: 'Search by Address', | ||
place: 'Search by Place Name', | ||
etc: 'Search By Zip Code, County, etc.' | ||
}, | ||
tools: { | ||
title: 'Tools', | ||
description: 'In addition to Search capabilities, the following tools are provided:', | ||
measure: { | ||
title: 'Measure', | ||
description: 'The measure tool provides the capabilities to draw a point, line, or polygon on the map and specify the unit of measurement.' | ||
}, | ||
print: { | ||
title: 'Print', | ||
description: 'This map can be exported to various formats and layouts.' | ||
} | ||
} | ||
}, | ||
'pt-pt': true | ||
}); |
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