##// END OF EJS Templates
debuginstall: don't translate encoding messages...
Yuya Nishihara -
r45660:d50d922c default
parent child Browse files
Show More
@@ -1465,8 +1465,8 b' def debuginstall(ui, **opts):'
1465 fm = ui.formatter(b'debuginstall', opts)
1465 fm = ui.formatter(b'debuginstall', opts)
1466 fm.startitem()
1466 fm.startitem()
1467
1467
1468 # encoding
1468 # encoding might be unknown or wrong. don't translate these messages.
1469 fm.write(b'encoding', _(b"checking encoding (%s)...\n"), encoding.encoding)
1469 fm.write(b'encoding', b"checking encoding (%s)...\n", encoding.encoding)
1470 err = None
1470 err = None
1471 try:
1471 try:
1472 codecs.lookup(pycompat.sysstr(encoding.encoding))
1472 codecs.lookup(pycompat.sysstr(encoding.encoding))
@@ -1476,7 +1476,7 b' def debuginstall(ui, **opts):'
1476 fm.condwrite(
1476 fm.condwrite(
1477 err,
1477 err,
1478 b'encodingerror',
1478 b'encodingerror',
1479 _(b" %s\n (check that your locale is properly set)\n"),
1479 b" %s\n (check that your locale is properly set)\n",
1480 err,
1480 err,
1481 )
1481 )
1482
1482
General Comments 0
You need to be logged in to leave comments. Login now