mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
[ja] Support i18n 70-base64 node. (#591)
* [ja] Translate 70-base64 node. * Fix PR review #591 "Buffer" -> "バッファ". We have used Japanese katakana words of "buffer" in http-request and file-out nodes. * Fix PR review #591 "Base64" -> "base64" * Fix PR review #591 "Base64から文字列へデコード" -> "Base64から文字列へ変換"
This commit is contained in:
committed by
Dave Conway-Jones
parent
0f46364a55
commit
739b3e595c
@@ -250,7 +250,7 @@ describe('base64 node', function() {
|
||||
return evt[0].type == "base64";
|
||||
});
|
||||
logEvents[0][0].should.have.a.property('msg');
|
||||
logEvents[0][0].msg.toString().should.startWith("Invalid Base64 string");
|
||||
logEvents[0][0].msg.toString().should.startWith("base64.error.invalid");
|
||||
done();
|
||||
} catch (e) {
|
||||
done(e);
|
||||
@@ -275,7 +275,7 @@ describe('base64 node', function() {
|
||||
return evt[0].type == "base64";
|
||||
});
|
||||
logEvents[0][0].should.have.a.property('msg');
|
||||
logEvents[0][0].msg.toString().should.startWith("Not a Base64 string");
|
||||
logEvents[0][0].msg.toString().should.startWith("base64.error.nonbase64");
|
||||
done();
|
||||
} catch (e) {
|
||||
done(e);
|
||||
|
Reference in New Issue
Block a user