我创建了一个相当简单的脚本,可以找到英文并用西班牙语替换它。
function translatesp() {
var body = DocumentApp.getActiveDocument()
.getBody();
body.replaceText('Master Change Log', 'Historial de Cambios');
body.replaceText('Prepared for:', 'Preparado para:');
body.replaceText('Git Reference', 'Referencia Git');
}
但该功能仅在我创建代码的文档中可用。如何在所有Google文档中提供此功能?很抱歉,如果之前有人询问,我会搜索但找不到任何内容。
答案 0 :(得分:0)
我知道的两种方式: