19 lines
634 B
JavaScript
19 lines
634 B
JavaScript
/*
|
|
Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
|
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
*/
|
|
CKEDITOR.plugins.setLang( 'find', 'pt', {
|
|
find: 'Pesquisar',
|
|
findOptions: 'Opções de pesquisa',
|
|
findWhat: 'Texto a procurar:',
|
|
matchCase: 'Maiúsculas/Minúsculas',
|
|
matchCyclic: 'Match cyclic',
|
|
matchWord: 'Coincidir com toda a palavra',
|
|
notFoundMsg: 'O texto especificado não foi encontrado.',
|
|
replace: 'Substituir',
|
|
replaceAll: 'Substituir tudo',
|
|
replaceSuccessMsg: '%1 ocurrências(s) substituídas.',
|
|
replaceWith: 'Substituir por:',
|
|
title: 'Pesquisar e substituir'
|
|
} );
|