mirror of
https://github.com/dualshock-tools/dualshock-tools.github.io.git
synced 2026-07-18 13:44:17 +03:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1fa7066477 | ||
|
|
65376ea717 | ||
|
|
97317bd7b2 | ||
|
|
ef5b307046 | ||
|
|
9e359c9dcd | ||
|
|
152a11d7bc | ||
|
|
5c1a0f44f8 | ||
|
|
6c876b896b | ||
|
|
0105d3d71d | ||
|
|
4edbf811d7 | ||
|
|
7a30759a12 | ||
|
|
e83c790e5a | ||
|
|
120c1423a1 | ||
|
|
d1cbaeffd8 | ||
|
|
10123705f0 | ||
|
|
901b93ee5d | ||
|
|
0212e3baaa | ||
|
|
5816ef960b | ||
|
|
c65f5bb9c0 |
306
core.js
306
core.js
@@ -205,10 +205,10 @@ async function ds5_flash() {
|
||||
async function ds5_edge_flash() {
|
||||
la("ds5_edge_flash");
|
||||
try {
|
||||
await ds5_edge_flash_modules();
|
||||
await ds5_reset();
|
||||
show_popup("<b>" + l("Changes saved successfully") + "</b>.<br><br>" + l("If the calibration is not stored permanently, please double-check the wirings of the hardware mod.") + "<br>" + l("Please disconnect and reconnect the controller."), true);
|
||||
await disconnect();
|
||||
ret = await ds5_edge_flash_modules();
|
||||
if(ret) {
|
||||
show_popup("<b>" + l("Changes saved successfully") + "</b>.<br><br>" + l("If the calibration is not stored permanently, please double-check the wirings of the hardware mod."), true);
|
||||
}
|
||||
} catch(error) {
|
||||
show_popup(l("Error while saving changes: ") + toString(error));
|
||||
}
|
||||
@@ -236,6 +236,7 @@ async function ds4_calibrate_range_begin() {
|
||||
try {
|
||||
// Begin
|
||||
await device.sendFeatureReport(0x90, alloc_req(0x90, [1,1,2]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
|
||||
// Assert
|
||||
data = await device.receiveFeatureReport(0x91)
|
||||
@@ -261,6 +262,7 @@ async function ds4_calibrate_range_end() {
|
||||
try {
|
||||
// Write
|
||||
await device.sendFeatureReport(0x90, alloc_req(0x90, [2,1,2]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
|
||||
data = await device.receiveFeatureReport(0x91)
|
||||
data2 = await device.receiveFeatureReport(0x92)
|
||||
@@ -289,6 +291,7 @@ async function ds4_calibrate_sticks_begin() {
|
||||
try {
|
||||
// Begin
|
||||
await device.sendFeatureReport(0x90, alloc_req(0x90, [1,1,1]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
|
||||
// Assert
|
||||
data = await device.receiveFeatureReport(0x91);
|
||||
@@ -316,6 +319,7 @@ async function ds4_calibrate_sticks_sample() {
|
||||
try {
|
||||
// Sample
|
||||
await device.sendFeatureReport(0x90, alloc_req(0x90, [3,1,1]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
|
||||
// Assert
|
||||
data = await device.receiveFeatureReport(0x91);
|
||||
@@ -342,6 +346,7 @@ async function ds4_calibrate_sticks_end() {
|
||||
try {
|
||||
// Write
|
||||
await device.sendFeatureReport(0x90, alloc_req(0x90, [2,1,1]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
|
||||
data = await device.receiveFeatureReport(0x91);
|
||||
data2 = await device.receiveFeatureReport(0x92);
|
||||
@@ -365,18 +370,19 @@ async function ds4_calibrate_sticks_end() {
|
||||
|
||||
async function ds4_calibrate_sticks() {
|
||||
la("ds4_calibrate_sticks");
|
||||
var err = l("Stick calibration failed: ");
|
||||
let err = l("Stick calibration failed: ");
|
||||
try {
|
||||
set_progress(0);
|
||||
|
||||
// Begin
|
||||
await device.sendFeatureReport(0x90, alloc_req(0x90, [1,1,1]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
|
||||
// Assert
|
||||
data = await device.receiveFeatureReport(0x91);
|
||||
data2 = await device.receiveFeatureReport(0x92);
|
||||
d1 = data.getUint32(0, false);
|
||||
d2 = data2.getUint32(0, false);
|
||||
let data = await device.receiveFeatureReport(0x91);
|
||||
let data2 = await device.receiveFeatureReport(0x92);
|
||||
let d1 = data.getUint32(0, false);
|
||||
let d2 = data2.getUint32(0, false);
|
||||
if(d1 != 0x91010101 || d2 != 0x920101ff) {
|
||||
la("ds4_calibrate_sticks_failed", {"s": 1, "d1": d1, "d2": d2});
|
||||
close_calibrate_window();
|
||||
@@ -384,18 +390,19 @@ async function ds4_calibrate_sticks() {
|
||||
}
|
||||
|
||||
set_progress(10);
|
||||
await new Promise(r => setTimeout(r, 100));
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
|
||||
for(var i=0;i<3;i++) {
|
||||
// Sample
|
||||
await device.sendFeatureReport(0x90, alloc_req(0x90, [3,1,1]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
|
||||
// Assert
|
||||
data = await device.receiveFeatureReport(0x91);
|
||||
data2 = await device.receiveFeatureReport(0x92);
|
||||
let data = await device.receiveFeatureReport(0x91);
|
||||
let data2 = await device.receiveFeatureReport(0x92);
|
||||
if(data.getUint32(0, false) != 0x91010101 || data2.getUint32(0, false) != 0x920101ff) {
|
||||
d1 = dec2hex32(data.getUint32(0, false));
|
||||
d2 = dec2hex32(data2.getUint32(0, false));
|
||||
let d1 = dec2hex32(data.getUint32(0, false));
|
||||
let d2 = dec2hex32(data2.getUint32(0, false));
|
||||
la("ds4_calibrate_sticks_failed", {"s": 2, "i": i, "d1": d1, "d2": d2});
|
||||
close_calibrate_window();
|
||||
return show_popup(err + l("Error 2") + " (" + d1 + ", " + d2 + " at i=" + i + ")");
|
||||
@@ -407,9 +414,10 @@ async function ds4_calibrate_sticks() {
|
||||
|
||||
// Write
|
||||
await device.sendFeatureReport(0x90, alloc_req(0x90, [2,1,1]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
if(data.getUint32(0, false) != 0x91010101 || data2.getUint32(0, false) != 0x920101FF) {
|
||||
d1 = dec2hex32(data.getUint32(0, false));
|
||||
d2 = dec2hex32(data2.getUint32(0, false));
|
||||
let d1 = dec2hex32(data.getUint32(0, false));
|
||||
let d2 = dec2hex32(data2.getUint32(0, false));
|
||||
la("ds4_calibrate_sticks_failed", {"s": 3, "d1": d1, "d2": d2});
|
||||
close_calibrate_window();
|
||||
return show_popup(err + l("Error 3") + " (" + d1 + ", " + d2 + " at i=" + i + ")");
|
||||
@@ -492,6 +500,22 @@ async function ds4_getbdaddr() {
|
||||
}
|
||||
}
|
||||
|
||||
async function ds5_edge_get_barcode() {
|
||||
try {
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [21,34]));
|
||||
await new Promise(r => setTimeout(r, 100));
|
||||
|
||||
data = lf("ds5_edge_get_barcode", await device.receiveFeatureReport(0x81));
|
||||
td = new TextDecoder()
|
||||
|
||||
r_bc = td.decode(data.buffer.slice(21, 21+17));
|
||||
l_bc = td.decode(data.buffer.slice(40, 40+17));
|
||||
return [r_bc, l_bc];
|
||||
} catch(e) {
|
||||
return "error";
|
||||
}
|
||||
}
|
||||
|
||||
async function ds5_getbdaddr() {
|
||||
try {
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [9,2]));
|
||||
@@ -531,7 +555,36 @@ async function ds5_system_info(base, num, length, decode = true) {
|
||||
return l("Unknown");
|
||||
}
|
||||
|
||||
async function ds5_info() {
|
||||
function ds5_color(x) {
|
||||
const colorMap = {
|
||||
'00' : l('White'),
|
||||
'01' : l('Midnight Black'),
|
||||
'02' : l('Cosmic Red'),
|
||||
'03' : l('Nova Pink'),
|
||||
'04' : l('Galactic Purple'),
|
||||
'05' : l('Starlight Blue'),
|
||||
'06' : l('Grey Camouflage'),
|
||||
'07' : l('Volcanic Red'),
|
||||
'08' : l('Sterling Silver'),
|
||||
'09' : l('Cobalt Blue'),
|
||||
'10' : l('Chroma Teal'),
|
||||
'11' : l('Chroma Indigo'),
|
||||
'12' : l('Chroma Pearl'),
|
||||
'30' : l('30th Anniversary'),
|
||||
'Z1' : l('God of War Ragnarok'),
|
||||
'Z2' : l('Spider-Man 2'),
|
||||
'Z3' : l('Astro Bot'),
|
||||
'Z4' : l('Fortnite'),
|
||||
'Z6' : l('The Last of Us')
|
||||
};
|
||||
|
||||
const colorCode = x.slice(4, 6);
|
||||
const colorName = colorMap[colorCode] || 'Unknown';
|
||||
return colorName;
|
||||
}
|
||||
|
||||
|
||||
async function ds5_info(is_edge) {
|
||||
try {
|
||||
const view = lf("ds5_info", await device.receiveFeatureReport(0x20));
|
||||
|
||||
@@ -559,14 +612,23 @@ async function ds5_info() {
|
||||
|
||||
b_info = ' <a class="link-body-emphasis" href="#" onclick="board_model_info()">' +
|
||||
'<svg class="bi" width="1.3em" height="1.3em"><use xlink:href="#info"/></svg></a>';
|
||||
c_info = ' <a class="link-body-emphasis" href="#" onclick="edge_color_info()">' +
|
||||
'<svg class="bi" width="1.3em" height="1.3em"><use xlink:href="#info"/></svg></a>';
|
||||
|
||||
append_info(l("Serial Number"), await ds5_system_info(1, 19, 17), "hw");
|
||||
serial_number = await ds5_system_info(1, 19, 17);
|
||||
append_info(l("Serial Number"), serial_number, "hw");
|
||||
append_info_extra(l("MCU Unique ID"), await ds5_system_info(1, 9, 9, false), "hw");
|
||||
append_info_extra(l("PCBA ID"), await ds5_system_info(1, 17, 14), "hw");
|
||||
append_info_extra(l("Battery Barcode"), await ds5_system_info(1, 24, 23), "hw");
|
||||
append_info_extra(l("VCM Left Barcode"), await ds5_system_info(1, 26, 16), "hw");
|
||||
append_info_extra(l("VCM Right Barcode"), await ds5_system_info(1, 28, 16), "hw");
|
||||
append_info(l("Board Model"), ds5_hw_to_bm(hwinfo) + b_info, "hw");
|
||||
|
||||
color = ds5_color(serial_number);
|
||||
append_info(l("Color"), color + c_info, "hw");
|
||||
|
||||
if(!is_edge) {
|
||||
append_info(l("Board Model"), ds5_hw_to_bm(hwinfo) + b_info, "hw");
|
||||
}
|
||||
|
||||
append_info(l("FW Build Date"), build_date + " " + build_time, "fw");
|
||||
append_info_extra(l("FW Type"), "0x" + dec2hex(fwtype), "fw");
|
||||
@@ -592,6 +654,7 @@ async function ds5_info() {
|
||||
nvstatus = await ds5_nvstatus();
|
||||
if(nvstatus == 0)
|
||||
await ds5_nvlock();
|
||||
|
||||
bd_addr = await ds5_getbdaddr();
|
||||
append_info(l("Bluetooth Address"), bd_addr, "hw");
|
||||
} catch(e) {
|
||||
@@ -602,6 +665,18 @@ async function ds5_info() {
|
||||
return true;
|
||||
}
|
||||
|
||||
async function ds5_load_modules_info() {
|
||||
empty = '\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00'
|
||||
// DS Edge
|
||||
sticks_barcode = await ds5_edge_get_barcode();
|
||||
for(i=0;i<2;i++) {
|
||||
if(sticks_barcode[i] == empty)
|
||||
sticks_barcode[i] = l("Unknown")
|
||||
}
|
||||
append_info(l("Left Module Barcode"), sticks_barcode[1], "fw");
|
||||
append_info(l("Right Module Barcode"), sticks_barcode[0], "fw");
|
||||
}
|
||||
|
||||
async function ds5_calibrate_sticks_begin() {
|
||||
la("ds5_calibrate_sticks_begin");
|
||||
var err = l("Range calibration failed: ");
|
||||
@@ -863,36 +938,121 @@ async function ds5_nvlock() {
|
||||
}
|
||||
}
|
||||
|
||||
async function wait_until_written(expected) {
|
||||
for(it=0;it<10;it++) {
|
||||
data = await device.receiveFeatureReport(0x81)
|
||||
|
||||
again = false
|
||||
for(i=0;i<expected.length;i++) {
|
||||
if(data.getUint8(1+i, true) != expected[i]) {
|
||||
again = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if(!again) {
|
||||
return true;
|
||||
}
|
||||
await new Promise(r => setTimeout(r, 50));
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
function set_edge_progress(score) {
|
||||
$("#dsedge-progress").css({ "width": score + "%" })
|
||||
}
|
||||
|
||||
async function ds5_edge_unlock_module(i) {
|
||||
m_name = i == 0 ? "left module" : "right module";
|
||||
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [21, 6, i, 11]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
ret = await wait_until_written([21, 6, 2])
|
||||
if(!ret) {
|
||||
throw new Error(l("Cannot unlock") + " " + l(m_name));
|
||||
}
|
||||
}
|
||||
|
||||
async function ds5_edge_lock_module(i) {
|
||||
m_name = i == 0 ? "left module" : "right module";
|
||||
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [21, 4, i, 8]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
ret = await wait_until_written([21, 4, 2])
|
||||
if(!ret) {
|
||||
throw new Error(l("Cannot lock") + " " + l(m_name));
|
||||
}
|
||||
}
|
||||
|
||||
async function ds5_edge_store_data_into(i) {
|
||||
m_name = i == 0 ? "left module" : "right module";
|
||||
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [21, 5, i]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
ret = await wait_until_written([21, 5, 2])
|
||||
if(!ret) {
|
||||
throw new Error(l("Cannot store data into") + " " + l(m_name));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
async function ds5_edge_flash_modules() {
|
||||
la("ds5_edge_flash_modules");
|
||||
var modal = null;
|
||||
|
||||
if (device == null)
|
||||
return;
|
||||
|
||||
try {
|
||||
modal = new bootstrap.Modal(document.getElementById('edgeProgressModal'), {})
|
||||
modal.show();
|
||||
set_edge_progress(0);
|
||||
|
||||
if(device != null) {
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [21, 6, 0, 11]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [21, 5, 0]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
// Reload data, this ensures correctly writing data in the controller
|
||||
await new Promise(r => setTimeout(r, 100));
|
||||
set_edge_progress(10);
|
||||
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [21, 6, 1, 11]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [21, 5, 1]))
|
||||
await new Promise(r => setTimeout(r, 200));
|
||||
}
|
||||
await new Promise(r => setTimeout(r, 500));
|
||||
if(device != null) {
|
||||
data = await device.receiveFeatureReport(0x81)
|
||||
}
|
||||
await new Promise(r => setTimeout(r, 1000));
|
||||
// Unlock modules
|
||||
await ds5_edge_unlock_module(0);
|
||||
set_edge_progress(15);
|
||||
await ds5_edge_unlock_module(1);
|
||||
set_edge_progress(30);
|
||||
|
||||
// Unlock NVS
|
||||
await ds5_nvunlock()
|
||||
await new Promise(r => setTimeout(r, 50));
|
||||
set_edge_progress(45);
|
||||
|
||||
// This should trigger write into modules
|
||||
data = await ds5_get_inmemory_module_data()
|
||||
await new Promise(r => setTimeout(r, 50));
|
||||
set_edge_progress(60);
|
||||
await write_finetune_data(data)
|
||||
|
||||
// Extra delay
|
||||
await new Promise(r => setTimeout(r, 100));
|
||||
|
||||
// Lock back modules
|
||||
await ds5_edge_lock_module(0);
|
||||
set_edge_progress(80);
|
||||
await ds5_edge_lock_module(1);
|
||||
set_edge_progress(100);
|
||||
|
||||
// Lock back NVS
|
||||
await new Promise(r => setTimeout(r, 100));
|
||||
await ds5_nvlock()
|
||||
|
||||
await new Promise(r => setTimeout(r, 250));
|
||||
modal.hide();
|
||||
await ds5_reset();
|
||||
modal = null;
|
||||
await new Promise(r => setTimeout(r, 300));
|
||||
|
||||
return true;
|
||||
} catch(e) {
|
||||
modal.hide();
|
||||
|
||||
modal = null;
|
||||
await new Promise(r => setTimeout(r, 500));
|
||||
return show_popup(l("NVS Unlock failed: ") + e);
|
||||
show_popup("Error: " + e);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1018,9 +1178,11 @@ async function on_finetune_change(x) {
|
||||
list = ["LL", "LT", "RL", "RT", "LR", "LB", "RR", "RB", "LX", "LY", "RX", "RY"]
|
||||
|
||||
out=[]
|
||||
for(i=0;i<12;i++) {
|
||||
v = $("#finetune" + list[i]).val()
|
||||
out.push(parseInt(v))
|
||||
|
||||
for(let i=0;i<12;i++) {
|
||||
let el = $("#finetune" + list[i]);
|
||||
let v = parseInt(el.val())
|
||||
out.push(v)
|
||||
}
|
||||
await write_finetune_data(out)
|
||||
}
|
||||
@@ -1046,9 +1208,9 @@ async function ds5_finetune() {
|
||||
curModal = new bootstrap.Modal(document.getElementById('finetuneModal'), {})
|
||||
curModal.show();
|
||||
|
||||
list = ["LL", "LT", "RL", "RT", "LR", "LB", "RR", "RB", "LX", "LY", "RX", "RY"]
|
||||
let list = ["LL", "LT", "RL", "RT", "LR", "LB", "RR", "RB", "LX", "LY", "RX", "RY"]
|
||||
for(i=0;i<12;i++) {
|
||||
$("#finetune" + list[i]).attr("value", data[i])
|
||||
$("#finetune" + list[i]).val(data[i])
|
||||
$("#finetune" + list[i]).on('change', on_finetune_change)
|
||||
}
|
||||
|
||||
@@ -1058,30 +1220,48 @@ async function ds5_finetune() {
|
||||
refresh_finetune()
|
||||
}
|
||||
|
||||
async function read_finetune_data() {
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [12,2]))
|
||||
async function ds5_get_inmemory_module_data() {
|
||||
if (mode == 2) {
|
||||
// DualSense
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [12, 2]))
|
||||
} else if(mode == 3) {
|
||||
// DualSense Edge
|
||||
await device.sendFeatureReport(0x80, alloc_req(0x80, [12, 4]))
|
||||
|
||||
}
|
||||
await new Promise(r => setTimeout(r, 100));
|
||||
var data = await device.receiveFeatureReport(0x81)
|
||||
var cmd = data.getUint8(0, true);
|
||||
var p1 = data.getUint8(1, true);
|
||||
var p2 = data.getUint8(2, true);
|
||||
var p3 = data.getUint8(3, true);
|
||||
if(cmd != 129 || p1 != 12 || p2 != 2 || p3 != 2)
|
||||
{
|
||||
|
||||
if(cmd != 129 || p1 != 12 || (p2 != 2 && p2 != 4) || p3 != 2)
|
||||
return null;
|
||||
|
||||
var out = []
|
||||
for(i=0;i<12;i++)
|
||||
out.push(data.getUint16(4+i*2, true))
|
||||
return out;
|
||||
}
|
||||
|
||||
async function read_finetune_data() {
|
||||
data = ds5_get_inmemory_module_data();
|
||||
if(data == null) {
|
||||
finetune_close();
|
||||
show_popup("ERROR: Cannot read calibration data");
|
||||
return null;
|
||||
}
|
||||
var out = []
|
||||
for(i=0;i<12;i++)
|
||||
out.push(data.getUint16(4+i*2, true))
|
||||
last_written_finetune_data = out
|
||||
return out;
|
||||
|
||||
last_written_finetune_data = data;
|
||||
return data;
|
||||
}
|
||||
|
||||
async function write_finetune_data(data) {
|
||||
if (data.length != 12) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (data == last_written_finetune_data) {
|
||||
return;
|
||||
}
|
||||
@@ -1614,21 +1794,24 @@ async function continue_connection(report) {
|
||||
} else if(device.productId == 0x0ce6) {
|
||||
$("#infoshowall").show()
|
||||
$("#ds5finetune").show()
|
||||
if(await ds5_info()) {
|
||||
if(await ds5_info(false)) {
|
||||
connected = true;
|
||||
mode = 2;
|
||||
devname = l("Sony DualSense");
|
||||
device.oninputreport = process_ds_input;
|
||||
}
|
||||
} else if(device.productId == 0x0df2) {
|
||||
$("#infoshowall").hide()
|
||||
$("#ds5finetune").hide()
|
||||
if(await ds5_info()) {
|
||||
$("#infoshowall").show()
|
||||
$("#ds5finetune").show()
|
||||
if(await ds5_info(true)) {
|
||||
connected = true;
|
||||
mode = 3;
|
||||
devname = l("Sony DualSense Edge");
|
||||
device.oninputreport = process_ds_input;
|
||||
await ds5_load_modules_info();
|
||||
}
|
||||
|
||||
|
||||
n = await ds5_nvstatus();
|
||||
if(n == 4) {
|
||||
// dualsense edge with pending reboot
|
||||
@@ -1638,8 +1821,6 @@ async function continue_connection(report) {
|
||||
show_popup(l("A reboot is needed to continue using this DualSense Edge. Please disconnect and reconnect your controller."));
|
||||
return;
|
||||
}
|
||||
|
||||
device.oninputreport = process_ds_input;
|
||||
} else {
|
||||
$("#btnconnect").prop("disabled", false);
|
||||
$("#connectspinner").hide();
|
||||
@@ -1664,8 +1845,9 @@ async function continue_connection(report) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(mode == 3)
|
||||
if(mode == 3) {
|
||||
show_edge_modal();
|
||||
}
|
||||
|
||||
if(disable_btn != 0)
|
||||
update_disable_btn();
|
||||
@@ -1797,7 +1979,7 @@ async function multi_nvslock() {
|
||||
if(mode == 1) {
|
||||
await ds4_nvlock();
|
||||
await ds4_nvstatus();
|
||||
} else {
|
||||
} else if (mode == 2) {
|
||||
await ds5_nvlock();
|
||||
await ds5_nvstatus();
|
||||
}
|
||||
@@ -1935,6 +2117,12 @@ function discord_popup() {
|
||||
show_popup(l("My handle on discord is: the_al"));
|
||||
}
|
||||
|
||||
function edge_color_info() {
|
||||
la("cm_info");
|
||||
text = l("Color detection thanks to") + ' romek77 from Poland.';
|
||||
show_popup(text, true);
|
||||
}
|
||||
|
||||
function board_model_info() {
|
||||
la("bm_info");
|
||||
l1 = l("This feature is experimental.");
|
||||
|
||||
@@ -564,6 +564,12 @@ dl.row dd { font-family: monospace; }
|
||||
<div class="modal-body">
|
||||
<p class="ds-i18n">Calibration is being stored in the stick modules.</p>
|
||||
<p class="ds-i18n">Please do not close this window and do not disconnect your controller. </p>
|
||||
|
||||
<div class="progress" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">
|
||||
<div id="dsedge-progress" class="progress-bar progress-bar-striped progress-bar-animated" style="width: 0%"></div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -824,7 +830,7 @@ dl.row dd { font-family: monospace; }
|
||||
<div class="container">
|
||||
<footer>
|
||||
<div class="d-flex flex-column flex-sm-row justify-content-between py-4 my-4 border-top" id="footbody">
|
||||
<p><a target="_blank" href="https://github.com/dualshock-tools/dualshock-tools.github.io/commits/main/"><span class="ds-i18n">Version</span> 2.4</a> (2025-05-02) - <a href="#" class="ds-i18n" onclick="show_donate_modal();">Support this project</a> <span id="authorMsg"></span></p>
|
||||
<p><a target="_blank" href="https://github.com/dualshock-tools/dualshock-tools.github.io/commits/main/"><span class="ds-i18n">Version</span> 2.8</a> (2025-07-13) - <a href="#" class="ds-i18n" onclick="show_donate_modal();">Support this project</a> <span id="authorMsg"></span></p>
|
||||
|
||||
<ul class="list-unstyled d-flex">
|
||||
<li class="ms-3"><a class="link-body-emphasis" href="mailto:ds4@the.al" target="_blank"><svg class="bi" width="24" height="24"><use xlink:href="#mail"/></svg></a></li>
|
||||
|
||||
@@ -187,31 +187,60 @@
|
||||
"Bluetooth Address": "عنوان البلوتوث",
|
||||
"Show all": "عرض الكل",
|
||||
"(beta)": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Astro Bot": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Cosmic Red": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"Nova Pink": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"Save": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This screen allows to finetune raw calibration data on your controller": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -161,15 +161,27 @@
|
||||
"Save changes permanently": "Запазете промените постоянно",
|
||||
"Reboot controller": "Рестартирайте контролера",
|
||||
"(beta)": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Astro Bot": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Controller Info": "",
|
||||
"Cosmic Red": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
@@ -181,16 +193,25 @@
|
||||
"FW Version": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"MCU Unique ID": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"Nova Pink": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"SBL FW Version": "",
|
||||
"Save": "",
|
||||
@@ -198,9 +219,13 @@
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This screen allows to finetune raw calibration data on your controller": "",
|
||||
@@ -209,8 +234,12 @@
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -143,19 +143,31 @@
|
||||
"Check circularity": "Zkontrolujte rozsah",
|
||||
"(Dualsense) Will updating the firmware reset calibration?": "",
|
||||
"(beta)": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"After range calibration, joysticks always go in corners.": "",
|
||||
"Astro Bot": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Can I reset a permanent calibration to previous calibration?": "",
|
||||
"Can you overwrite a permanent calibration?": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Changes saved successfully": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Controller Info": "",
|
||||
"Cosmic Red": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"Does this software resolve stickdrift?": "",
|
||||
@@ -169,22 +181,31 @@
|
||||
"FW Version": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I have noticed some controllers out of the box have worse factory calibration than if I would recalibrate them. Especially true for circularity of SCUF controllers with a unique shell.": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"MCU Unique ID": "",
|
||||
"Make sure to touch the edges of the joystick frame and rotate slowly, preferably in each direction - clockwise and anti-clockwise.": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"No.": "",
|
||||
"Nova Pink": "",
|
||||
"Only after you have done that, you click on \"Done\".": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Please read the instructions.": "",
|
||||
"Reboot controller": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"SBL FW Version": "",
|
||||
"Save": "",
|
||||
@@ -193,10 +214,14 @@
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Stickdrift is caused by a physical defect; namely dirt, worn potentiometer or in some cases a worn spring.": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This issue happens because you have clicked \"Done\" immediately after starting a range calibration.": "",
|
||||
@@ -207,10 +232,14 @@
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"Yes. Simply do another permanent calibration.": "",
|
||||
"You can do this in two ways:": "",
|
||||
"You have to rotate the joysticks before you press \"Done\".": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -187,31 +187,60 @@
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "Ich arbeite aktiv daran, die Kompatibilität hinzuzufügen. Die größte Herausforderung besteht darin, Daten in die Stick-Module zu speichern.",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "Wenn Ihnen dieses Tool geholfen hat oder Sie möchten, dass die DualSense-Edge-Unterstützung schneller verfügbar ist, ziehen Sie bitte in Betracht, das Projekt mit einem Beitrag zu unterstützen",
|
||||
"Thank you for your generosity and support!": "Vielen Dank für Ihre Großzügigkeit und Unterstützung!",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Astro Bot": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Cosmic Red": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
"FW Update": "",
|
||||
"FW Update Info": "",
|
||||
"FW Version": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"Left Module Barcode": "",
|
||||
"MCU Unique ID": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"Nova Pink": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Right Module Barcode": "",
|
||||
"SBL FW Version": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"Touchpad FW Version": "",
|
||||
"Touchpad ID": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -143,19 +143,31 @@
|
||||
"Check circularity": "Comprobar circularidad",
|
||||
"(Dualsense) Will updating the firmware reset calibration?": "",
|
||||
"(beta)": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"After range calibration, joysticks always go in corners.": "",
|
||||
"Astro Bot": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Can I reset a permanent calibration to previous calibration?": "",
|
||||
"Can you overwrite a permanent calibration?": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Changes saved successfully": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Controller Info": "",
|
||||
"Cosmic Red": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"Does this software resolve stickdrift?": "",
|
||||
@@ -169,22 +181,31 @@
|
||||
"FW Version": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I have noticed some controllers out of the box have worse factory calibration than if I would recalibrate them. Especially true for circularity of SCUF controllers with a unique shell.": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"MCU Unique ID": "",
|
||||
"Make sure to touch the edges of the joystick frame and rotate slowly, preferably in each direction - clockwise and anti-clockwise.": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"No.": "",
|
||||
"Nova Pink": "",
|
||||
"Only after you have done that, you click on \"Done\".": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Please read the instructions.": "",
|
||||
"Reboot controller": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"SBL FW Version": "",
|
||||
"Save": "",
|
||||
@@ -193,10 +214,14 @@
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Stickdrift is caused by a physical defect; namely dirt, worn potentiometer or in some cases a worn spring.": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This issue happens because you have clicked \"Done\" immediately after starting a range calibration.": "",
|
||||
@@ -207,10 +232,14 @@
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"Yes. Simply do another permanent calibration.": "",
|
||||
"You can do this in two ways:": "",
|
||||
"You have to rotate the joysticks before you press \"Done\".": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -23,19 +23,19 @@
|
||||
"Completed": "Terminé",
|
||||
"Welcome to the stick center-calibration wizard!": "Bienvenue dans l'assistant de calibrage de centrage du joystick !",
|
||||
"This tool will guide you in re-centering the analog sticks of your controller. It consists in four steps: you will be asked to move both sticks in a direction and release them.": "Cet outil va vous guider afin de recentrer les joysticks analogiques de votre manette. Il consiste en quatres étapes: il vous sera demandé de bouger les deux joysticks dans une direction puis de les relacher.",
|
||||
"Please be aware that, <i>;once the calibration is running, it cannot be canceled</i>;. Do not close this page or disconnect your controller until is completed.": "Veuillez noter <i>;qu’une fois le calibrage lancée, il n’est pas possible de l'annuler</i>;. Ne fermez pas cette page ou ne déconnectez pas la manette tant que le calibrage n’est pas terminée.",
|
||||
"Press <b>;Start</b>; to begin calibration.": "Appuyez sur <b>;Démarrer</b>; pour commencer le calibrage.",
|
||||
"Please move both sticks to the <b>;top-left corner</b>; and release them.": "Veuillez déplacer les deux joysticks <b>;en haut à gauche</b>; puis relachez-les.",
|
||||
"When the sticks are back in the center, press <b>;Continue</b>;.": "Une fois les deux joysticks recentrés, appuyez sur <b>;Continuer</b>;.",
|
||||
"Please move both sticks to the <b>;top-right corner</b>; and release them.": "Veuillez déplacer les deux joysticks <b>;en haut à droite</b>; puis relachez-les.",
|
||||
"Please move both sticks to the <b>;bottom-left corner</b>; and release them.": "Veuillez déplacer les deux joysticks <b>;en bas à gauche</b>; puis relachez-les.",
|
||||
"Please move both sticks to the <b>;bottom-right corner</b>; and release them.": "Veuillez déplacer les deux joysticks <b>;en bas à droite</b>; puis relachez-les.",
|
||||
"Please be aware that, <i>once the calibration is running, it cannot be canceled</i>. Do not close this page or disconnect your controller until is completed.": "Veuillez noter <i>qu'une fois le calibrage lancée, il n'est pas possible de l'annuler</i>. Ne fermez pas cette page ou ne déconnectez pas la manette tant que le calibrage n'est pas terminée.",
|
||||
"Press <b>Start</b> to begin calibration.": "Appuyez sur <b>Démarrer</b> pour commencer le calibrage.",
|
||||
"Please move both sticks to the <b>top-left corner</b> and release them.": "Veuillez déplacer les deux joysticks <b>en haut à gauche</b> puis relachez-les.",
|
||||
"When the sticks are back in the center, press <b>Continue</b>.": "Une fois les deux joysticks recentrés, appuyez sur <b>Continuer</b>.",
|
||||
"Please move both sticks to the <b>top-right corner</b> and release them.": "Veuillez déplacer les deux joysticks <b>en haut à droite</b> puis relachez-les.",
|
||||
"Please move both sticks to the <b>bottom-left corner</b> and release them.": "Veuillez déplacer les deux joysticks <b>en bas à gauche</b> puis relachez-les.",
|
||||
"Please move both sticks to the <b>bottom-right corner</b> and release them.": "Veuillez déplacer les deux joysticks <b>en bas à droite</b> puis relachez-les.",
|
||||
"Calibration completed successfully!": "Calibrage terminé avec succès !",
|
||||
"Next": "Suivant",
|
||||
"Recentering the controller sticks. ": "Recentrement des joysticks de la manette en cours. ",
|
||||
"Please do not close this window and do not disconnect your controller. ": "Veuillez ne pas fermer cette fenêtre et ne déconnectez pas votre manette. ",
|
||||
"Range calibration": "Calibrage de la portée du joystick",
|
||||
"<b>;The controller is now sampling data!</b>;": "<b>;La manette est maintenant en train d'échantillonner les données !</b>;",
|
||||
"<b>The controller is now sampling data!</b>": "<b>La manette est maintenant en train d'échantillonner les données !</b>",
|
||||
"Rotate the sticks slowly to cover the whole range. Press \"Done\" when completed.": "Faites tourner doucement les joysticks afin de couvrir toute leur portée. Appuyez sur \"Terminer\" une fois terminé.",
|
||||
"Done": "Terminer",
|
||||
"Hi, thank you for using this software.": "Salut, merci d'avoir utilisé cet outil.",
|
||||
@@ -143,19 +143,31 @@
|
||||
"Check circularity": "Vérifier la circularité",
|
||||
"(Dualsense) Will updating the firmware reset calibration?": "",
|
||||
"(beta)": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"After range calibration, joysticks always go in corners.": "",
|
||||
"Astro Bot": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Can I reset a permanent calibration to previous calibration?": "",
|
||||
"Can you overwrite a permanent calibration?": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Changes saved successfully": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Controller Info": "",
|
||||
"Cosmic Red": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"Does this software resolve stickdrift?": "",
|
||||
@@ -169,22 +181,31 @@
|
||||
"FW Version": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I have noticed some controllers out of the box have worse factory calibration than if I would recalibrate them. Especially true for circularity of SCUF controllers with a unique shell.": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"MCU Unique ID": "",
|
||||
"Make sure to touch the edges of the joystick frame and rotate slowly, preferably in each direction - clockwise and anti-clockwise.": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"No.": "",
|
||||
"Nova Pink": "",
|
||||
"Only after you have done that, you click on \"Done\".": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Please read the instructions.": "",
|
||||
"Reboot controller": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"SBL FW Version": "",
|
||||
"Save": "",
|
||||
@@ -193,10 +214,14 @@
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Stickdrift is caused by a physical defect; namely dirt, worn potentiometer or in some cases a worn spring.": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This issue happens because you have clicked \"Done\" immediately after starting a range calibration.": "",
|
||||
@@ -207,10 +232,14 @@
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"Yes. Simply do another permanent calibration.": "",
|
||||
"You can do this in two ways:": "",
|
||||
"You have to rotate the joysticks before you press \"Done\".": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -212,5 +212,34 @@
|
||||
"We are not responsible for any damage caused by attempting this modification.": "Nem vállalunk felelősséget az ezen módosítás megkísérlése által okozott károkért.",
|
||||
"You can do this in two ways:": "Ezt kétféleképpen teheted meg:",
|
||||
"here": "itt",
|
||||
"Cannot lock": "Zárolás nem lehetséges",
|
||||
"Cannot store data into": "Adatok tárolása nem lehetséges ide:",
|
||||
"Cannot unlock": "Feloldás nem lehetséges",
|
||||
"Color": "Szín",
|
||||
"Color detection thanks to": "A színészlelésért köszönet illeti:",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "Ha a kalibráció nem került véglegesen tárolásra, kérlek, ellenőrizd újra a hardvermódosítás vezetékezését!",
|
||||
"Left Module Barcode": "Bal modul vonalkódja",
|
||||
"Right Module Barcode": "Jobb modul vonalkódja",
|
||||
"left module": "bal modul",
|
||||
"right module": "jobb modul",
|
||||
"30th Anniversary": "30th Anniversary",
|
||||
"Astro Bot": "Astro Bot",
|
||||
"Cobalt Blue": "Cobalt Blue",
|
||||
"Cosmic Red": "Cosmic Red",
|
||||
"Galactic Purple": "Galactic Purple",
|
||||
"God of War Ragnarok": "God of War Ragnarok",
|
||||
"Grey Camouflage": "Grey Camouflage",
|
||||
"Midnight Black": "Midnight Black",
|
||||
"Nova Pink": "Nova Pink",
|
||||
"Starlight Blue": "Starlight Blue",
|
||||
"Sterling Silver": "Sterling Silver",
|
||||
"Volcanic Red": "Volcanic Red",
|
||||
"White": "Fehér",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Fortnite": "",
|
||||
"Spider-Man 2": "",
|
||||
"The Last of Us": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -197,7 +197,6 @@
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "Sto lavorando attivamente per renderlo compatibile, ma la sfida principale rimane salvare i dati nei moduli degli stick.",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "Se questo strumento ti è stato utile o desideri che il supporto per il DualSense Edge arrivi più rapidamente, considera di supportare il progetto con una",
|
||||
"Thank you for your generosity and support!": "Grazie per la tua generosità e per il supporto!",
|
||||
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "<b>Esternamente</b>: applicando +1.8V direttamente al test point visibile senza aprire il controller",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "<b>Internamente</b>: saldando un filo da un test point a +1.8V al test point di write-protect.",
|
||||
"Calibration is being stored in the stick modules.": "Sto salvando la calibrazione nei moduli degli stick.",
|
||||
@@ -214,6 +213,34 @@
|
||||
"We are not responsible for any damage caused by attempting this modification.": "Non siamo responsabili per eventuali danni causati dal tentativo di questa modifica.",
|
||||
"You can do this in two ways:": "Puoi farlo in due modi:",
|
||||
"here": "qui",
|
||||
|
||||
"Cannot lock": "Non riesco a bloccare il",
|
||||
"Cannot store data into": "Non riesco a salvare i dati nel",
|
||||
"Cannot unlock": "Non riesco a sbloccare il",
|
||||
"Color": "Colore",
|
||||
"Color detection thanks to": "Riconoscimento colore grazie a",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "Se la calibrazione non è salvata permanentemente, controlla i cablaggi della mod hardware.",
|
||||
"Left Module Barcode": "Codice modulo sinistro",
|
||||
"Right Module Barcode": "Codice modulo destro",
|
||||
"left module": "modulo sinistro",
|
||||
"right module": "modulo destro",
|
||||
"30th Anniversary": "30th Anniversary",
|
||||
"Astro Bot": "Astro Bot",
|
||||
"Cobalt Blue": "Cobalt Blue",
|
||||
"Cosmic Red": "Cosmic Red",
|
||||
"Galactic Purple": "Galactic Purple",
|
||||
"God of War Ragnarok": "God of War Ragnarok",
|
||||
"Grey Camouflage": "Grey Camouflage",
|
||||
"Midnight Black": "Midnight Black",
|
||||
"Nova Pink": "Nova Pink",
|
||||
"Starlight Blue": "Starlight Blue",
|
||||
"Sterling Silver": "Sterling Silver",
|
||||
"Volcanic Red": "Volcanic Red",
|
||||
"White": "Original White",
|
||||
"Chroma Indigo": "Chroma Indigo",
|
||||
"Chroma Pearl": "Chroma Pearl",
|
||||
"Chroma Teal": "Chroma Teal",
|
||||
"Fortnite": "Fortnite",
|
||||
"Spider-Man 2": "Spider-Man 2",
|
||||
"The Last of Us": "The Last of Us",
|
||||
"": ""
|
||||
}
|
||||
|
||||
@@ -155,16 +155,28 @@
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "このツールが役に立った場合、またはDualSense Edgeのサポートを早く実現したい場合は、プロジェクトへの支援をご検討ください。",
|
||||
"Thank you for your generosity and support!": "ご支援とご厚意に感謝します!",
|
||||
"(Dualsense) Will updating the firmware reset calibration?": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"After range calibration, joysticks always go in corners.": "",
|
||||
"Astro Bot": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Can I reset a permanent calibration to previous calibration?": "",
|
||||
"Can you overwrite a permanent calibration?": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Changes saved successfully": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Controller Info": "",
|
||||
"Cosmic Red": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"Does this software resolve stickdrift?": "",
|
||||
@@ -177,27 +189,40 @@
|
||||
"FW Update Info": "",
|
||||
"FW Version": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I have noticed some controllers out of the box have worse factory calibration than if I would recalibrate them. Especially true for circularity of SCUF controllers with a unique shell.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"Left Module Barcode": "",
|
||||
"MCU Unique ID": "",
|
||||
"Make sure to touch the edges of the joystick frame and rotate slowly, preferably in each direction - clockwise and anti-clockwise.": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"No.": "",
|
||||
"Nova Pink": "",
|
||||
"Only after you have done that, you click on \"Done\".": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Please read the instructions.": "",
|
||||
"Reboot controller": "",
|
||||
"Right Module Barcode": "",
|
||||
"SBL FW Version": "",
|
||||
"Save changes permanently": "",
|
||||
"Serial Number": "",
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Stickdrift is caused by a physical defect; namely dirt, worn potentiometer or in some cases a worn spring.": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This issue happens because you have clicked \"Done\" immediately after starting a range calibration.": "",
|
||||
@@ -207,10 +232,14 @@
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"Yes. Simply do another permanent calibration.": "",
|
||||
"You can do this in two ways:": "",
|
||||
"You have to rotate the joysticks before you press \"Done\".": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -186,31 +186,60 @@
|
||||
"Bluetooth Address": "Bluetooth Address",
|
||||
"Show all": "모두 보기",
|
||||
"(beta)": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Astro Bot": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Cosmic Red": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"Nova Pink": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"Save": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This screen allows to finetune raw calibration data on your controller": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -143,19 +143,31 @@
|
||||
"Check circularity": "Controleer de circulariteit",
|
||||
"(Dualsense) Will updating the firmware reset calibration?": "",
|
||||
"(beta)": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"After range calibration, joysticks always go in corners.": "",
|
||||
"Astro Bot": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Can I reset a permanent calibration to previous calibration?": "",
|
||||
"Can you overwrite a permanent calibration?": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Changes saved successfully": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Controller Info": "",
|
||||
"Cosmic Red": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"Does this software resolve stickdrift?": "",
|
||||
@@ -169,22 +181,31 @@
|
||||
"FW Version": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I have noticed some controllers out of the box have worse factory calibration than if I would recalibrate them. Especially true for circularity of SCUF controllers with a unique shell.": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"MCU Unique ID": "",
|
||||
"Make sure to touch the edges of the joystick frame and rotate slowly, preferably in each direction - clockwise and anti-clockwise.": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"No.": "",
|
||||
"Nova Pink": "",
|
||||
"Only after you have done that, you click on \"Done\".": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Please read the instructions.": "",
|
||||
"Reboot controller": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"SBL FW Version": "",
|
||||
"Save": "",
|
||||
@@ -193,10 +214,14 @@
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Stickdrift is caused by a physical defect; namely dirt, worn potentiometer or in some cases a worn spring.": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This issue happens because you have clicked \"Done\" immediately after starting a range calibration.": "",
|
||||
@@ -207,10 +232,14 @@
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"Yes. Simply do another permanent calibration.": "",
|
||||
"You can do this in two ways:": "",
|
||||
"You have to rotate the joysticks before you press \"Done\".": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -199,19 +199,48 @@
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "Aktywnie pracuję nad dodaniem kompatybilności, ale głównym wyzwaniem jest przechowywanie danych w modułach drążków.",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "Jeśli uważasz że to narzędzie było dla ciebie pomocne, lub chcesz aby wsparcie DualSense Edge pojawiło się szybciej, rozważ wsparcie projektu poprzez",
|
||||
"Thank you for your generosity and support!": "Dziękujemy za hojność i wsparcie!",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"More details and images": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"30th Anniversary": "30th Anniversary",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "<b>Zewnętrznie</b>: poprzez podanie +1.8V bezpośrednio do widocznego punktu testowego bez otwierania kontrolera.",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "<b>Wewnętrznie</b>: przez przylutowanie przewodu z źródła +1.8V do punktu testowego ochrony przed zapisem.",
|
||||
"Astro Bot": "Astro Bot",
|
||||
"Calibration is being stored in the stick modules.": "Kalibracja jest zapisywana w modułach drążków.",
|
||||
"Cannot lock": "Nie można zablokować",
|
||||
"Cannot store data into": "Nie można zachować informacji w",
|
||||
"Cannot unlock": "Nie można odblokować",
|
||||
"Cobalt Blue": "Cobalt Blue",
|
||||
"Color": "Kolor",
|
||||
"Color detection thanks to": "Podziękowania dla funkcji wykrywania kolorów",
|
||||
"Cosmic Red": "Cosmic Red",
|
||||
"DualSense Edge Calibration": "Kalibracja Dualsense Edge",
|
||||
"For more info or help, feel free to reach out on Discord.": "Aby uzyskać więcej informacji lub pomoc, skontaktuj się do nas na Discordzie",
|
||||
"Galactic Purple": "Galactic Purple",
|
||||
"God of War Ragnarok": "God of War Ragnarok",
|
||||
"Grey Camouflage": "Grey Camouflage",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "Jeżeli kalibracja nie została zachowana na stałe, prosimy o dwukrotnym sprawdzeniu ręcznie wykonanej modyfikacji",
|
||||
"Left Module Barcode": "Barcode lewego modułu",
|
||||
"Midnight Black": "Midnight Black",
|
||||
"More details and images": "Więcej szczegółów i zdjęć",
|
||||
"Nova Pink": "Nova Pink",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "Podłącz kontroler Dualshock 4, Dualsense, lub Dualsense Edge do komputera, i wciśnij Połącz",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "Uwaga: moduły drążków w DS Edge <b>nie mogą być kalibrowane wyłącznie za pomocą oprogramowania!</b>. Aby zapisać niestandardową kalibrację w wewnętrznej pamięci drążka, wymagana jest ręczna <b>modyfikacja sprzętowa</b>.",
|
||||
"Right Module Barcode": "Barcode prawego modułu",
|
||||
"Starlight Blue": "Starlight Blue",
|
||||
"Sterling Silver": "Sterling Silver",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "Wsparcie dla obsługi kalibrowania modułów drążków DualSense Edge jest teraz dostępna jako <b>funkcja eksperymentalna</b>.",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "Obejmuje to na tymczasowym wyłączeniu ochrony przed zapisem poprzez podanie <b>+1.8V</b> do określonego punktu testowego na każdym module.",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "Tylko dla zaawansowanych użytkowników. Jeśli nie jesteś pewien co robisz, proszę nie próbuj tego!",
|
||||
"Volcanic Red": "Volcanic Red",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "Nie ponosimy odpowiedzialności za jakiekolwiek szkody spowodowane próbą tej modyfikacji.",
|
||||
"White": "White",
|
||||
"You can do this in two ways:": "Możesz to zrobić na 2 sposoby:",
|
||||
"here": "tutaj",
|
||||
"left module": "lewy moduł",
|
||||
"right module": "prawy moduł",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Fortnite": "",
|
||||
"Spider-Man 2": "",
|
||||
"The Last of Us": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -161,15 +161,27 @@
|
||||
"Save changes permanently": "Salvar alterações permanentemente.",
|
||||
"Reboot controller": "Reiniciar controle",
|
||||
"(beta)": "(beta)",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Astro Bot": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Controller Info": "",
|
||||
"Cosmic Red": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
@@ -181,16 +193,25 @@
|
||||
"FW Version": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"MCU Unique ID": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"Nova Pink": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"SBL FW Version": "",
|
||||
"Save": "",
|
||||
@@ -198,9 +219,13 @@
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This screen allows to finetune raw calibration data on your controller": "",
|
||||
@@ -209,8 +234,12 @@
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -88,7 +88,7 @@
|
||||
"This website is not affiliated with Sony, PlayStation & co.": "Este website não é afiliado à Sony, PlayStation & co.",
|
||||
"This service is provided without warranty. Use at your own risk.": "Este serviço não oferece garantia. Utilize por sua conta e risco.",
|
||||
"Keep the internal battery of the controller connected and ensure it is well charged. If the battery dies during operations, the controller will be damaged and rendered unusable.": "Mantenha a bateria interna do controlador conectada e certefique-se que esteja bem carregada. Se a bateria se esgotar durante as operações, o controlador será danificado e ficará inutilizável.",
|
||||
"Before doing the permanent calibration, try the temporary one to ensure that everything is working well.": "Antes de fazer a calibração permanente, experimente a temporária para garantir que está tudo a funcionar corretamente.",
|
||||
"Before doing the permanent calibration, try the temporary one to ensure that everything is working well.": "Antes de fazer a calibração permanente, experimente a temporária para garantir que está tudo a funcionar corretamente.",
|
||||
"Understood": "Entendido",
|
||||
"Version": "Versão",
|
||||
"Frequently Asked Questions": "Perguntas Frequentes",
|
||||
@@ -174,7 +174,6 @@
|
||||
"Debug buttons": "Botões de depuração",
|
||||
"DualSense Edge Calibration": "Calibração Dualsense Edge",
|
||||
"FW Build Date": "Data de compilação do FW",
|
||||
"FW Series": "",
|
||||
"FW Type": "Tipo de FW",
|
||||
"FW Update": "Atualização de FW",
|
||||
"FW Update Info": "Info da atualização de FW",
|
||||
@@ -188,9 +187,9 @@
|
||||
"Left stick": "Joystick esquerdo",
|
||||
"MCU Unique ID": "ID Unico da MCU",
|
||||
"More details and images": "Mais detalhes e imagens",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "Ligue um comando DualShock 4, DualSense ou DualSense Edge ao seu computador e prima conectar.",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "Nota: os módulos do DS Edge <b>não podem ser calibrados apenas por software</b>. Para armazenar uma calibração personalizada na memória interna do joystick, é necessária uma <b>modificação de hardware</b>.",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.": "Nota: os módulos do DS Edge <b>não podem ser calibrados apenas por software</b>.",
|
||||
"To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "Para armazenar uma calibração personalizada na memória interna do joystick, é necessária uma <b>modificação de hardware</b>.",
|
||||
"Right stick": "joystick direito",
|
||||
"SBL FW Version": "Versão de FW SBL",
|
||||
"Save": "Gravar",
|
||||
@@ -212,5 +211,36 @@
|
||||
"We are not responsible for any damage caused by attempting this modification.": "Não nos responsabilizamos por quaisquer dano causado ao tentar usar esta modificação.",
|
||||
"You can do this in two ways:": "Pode fazer isto de duas formas",
|
||||
"here": "Aqui",
|
||||
"Cannot lock": "Não é possível bloquear",
|
||||
"Cannot store data into": "Não é possível armazenar dados em",
|
||||
"Cannot unlock": "Não é possível desbloquear",
|
||||
"Color": "Cor",
|
||||
"Color detection thanks to": "Detecção de cor graças a",
|
||||
"FW Series": "Série do FW",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "Se a calibração não for armazenada permanentemente, verifique novamente os fios soldados na modificação de hardware.",
|
||||
"Left Module Barcode": "Código de barras do módulo esquerdo",
|
||||
"PCBA ID": "ID do PCBA",
|
||||
"Right Module Barcode": "Código de barras do módulo direito",
|
||||
"left module": "módulo esquerdo",
|
||||
"right module": "módulo direito",
|
||||
"30th Anniversary": "",
|
||||
"Astro Bot": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Cosmic Red": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"Midnight Black": "",
|
||||
"Nova Pink": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"The Last of Us": "",
|
||||
"Volcanic Red": "",
|
||||
"White": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -198,19 +198,48 @@
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "Aktivno radim na dodavanju kompatibilnosti, glavni izazov je u čuvanju podataka u modulima džojstika.",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "Ako vam je ovaj alat bio koristan ili želite da podrška za DualSense Edge stigne brže, razmislite o podršci projekta sa",
|
||||
"Thank you for your generosity and support!": "Hvala vam na velikodušnosti i podršci!",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Astro Bot": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Cosmic Red": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"Left Module Barcode": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"Nova Pink": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Right Module Barcode": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
135
lang/ru_ru.json
135
lang/ru_ru.json
@@ -1,5 +1,5 @@
|
||||
{
|
||||
".authorMsg": "- Перевод на Русский язык выполнен: <a href='https://www.youtube.com/channel/UC8pzDCIt_CUj8sa7cYgPzHQ'>Tamir-Teknik</a>",
|
||||
".authorMsg": "- Перевод на Русский язык выполнен: <a href='https://www.youtube.com/channel/UC8pzDCIt_CUj8sa7cYgPzHQ'>Tamir-Teknik. Дополнил Amnesia44</a>",
|
||||
"DualShock Calibration GUI": "Интерфейс калибровки DualShock",
|
||||
"Unsupported browser. Please use a web browser with WebHID support (e.g. Chrome).": "Неподдерживаемый браузер. Используйте браузер с поддержкой WebHID (например, Chrome).",
|
||||
"Connect": "Подключить",
|
||||
@@ -160,57 +160,86 @@
|
||||
"Error while saving changes:": "Ошибка при сохранении изменений:",
|
||||
"Save changes permanently": "Сохранить изменения навсегда",
|
||||
"Reboot controller": "Перезагрузить контроллер",
|
||||
"(beta)": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Cancel": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Controller Info": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
"FW Build Date": "",
|
||||
"FW Series": "",
|
||||
"FW Type": "",
|
||||
"FW Update": "",
|
||||
"FW Update Info": "",
|
||||
"FW Version": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left stick": "",
|
||||
"MCU Unique ID": "",
|
||||
"More details and images": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Right stick": "",
|
||||
"SBL FW Version": "",
|
||||
"Save": "",
|
||||
"Serial Number": "",
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This screen allows to finetune raw calibration data on your controller": "",
|
||||
"Touchpad FW Version": "",
|
||||
"Touchpad ID": "",
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"(beta)": "Бета",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "<b>Снаружи</b>: подачей напряжения +1,8 В непосредственно на видимую тестовую точку (TP) без вскрытия корпуса контроллера.",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "<b>Внутри</b>: припаяйте провод от +1,8 В к точке защиты от записи.",
|
||||
"Battery Barcode": "Штрих-код батареи",
|
||||
"Bluetooth Address": "Адрес Bluetooth",
|
||||
"Calibration is being stored in the stick modules.": "Калибровка сохраняется в модулях стиков",
|
||||
"Cancel": "Отмена",
|
||||
"Cannot lock": "Не удалось заблокировать",
|
||||
"Cannot store data into": "Не удалось сохранить данные",
|
||||
"Cannot unlock": "Не удалось разблокировать",
|
||||
"Center X": "Центр оси X",
|
||||
"Center Y": "Центр оси Y",
|
||||
"Color": "Цвет",
|
||||
"Color detection thanks to": "За определение цвета спасибо",
|
||||
"Controller Info": "Инфо контроллера",
|
||||
"Debug Info": "Дебаг-информация",
|
||||
"Debug buttons": "Отладка кнопок",
|
||||
"DualSense Edge Calibration": "Калибровка DualSense Edge",
|
||||
"FW Build Date": "Дата сборки ПО",
|
||||
"FW Series": "Серия ПО",
|
||||
"FW Type": "Тип ПО",
|
||||
"FW Update": "Обновление ПО",
|
||||
"FW Update Info": "Информация об обновлении ПО",
|
||||
"FW Version": "Версия ПО",
|
||||
"Finetune stick calibration": "Точная калибровка стиков",
|
||||
"For more info or help, feel free to reach out on Discord.": "Для получения помощи не стесняйтесь обращаться в Discord",
|
||||
"HW Model": "Модель устройства",
|
||||
"Hardware": "Аппаратная часть",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "Я активно работаю над добавлением совместимости, но основная проблема заключается в хранении данных в модулях стиков.",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "Если калибровка не сохраняется после перезагрузки, тщательно проверьте правильность подключения.",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "Если этот инструмент был вам полезен или вы хотите, чтобы поддержка DualSense Edge появилась быстрее, пожалуйста, рассмотрите возможность поддержать проект —",
|
||||
"Left Module Barcode": "Штрих-код левого модуля",
|
||||
"Left stick": "Левый стик",
|
||||
"MCU Unique ID": "Уникальный MCU ID",
|
||||
"More details and images": "Больше деталей и изображения",
|
||||
"PCBA ID": "ID платы",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "Подключите контроллер DualShock 4, DualSense или DualSense Edge к компьютеру и нажмите кнопку Подключить",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "Обратите внимание: модули стиков на контроллере Dualsense Edge <b>нельзя откалибровать только с помощью программного обеспечения</b>. Для сохранения пользовательской калибровки во внутренней памяти джойстика требуется <b>аппаратная модификация</b>.",
|
||||
"Right Module Barcode": "Штрих-код правого модуля",
|
||||
"Right stick": "Правый стик",
|
||||
"SBL FW Version": "Версия прошивки SBL",
|
||||
"Save": "Сохранить",
|
||||
"Serial Number": "Серийный номер",
|
||||
"Show all": "Показать все",
|
||||
"Software": "Программное обеспечение",
|
||||
"Spider FW Version": "Версия прошивки Spider",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "Поддержка калибровки модулей DualSense Edge теперь доступна в качестве <b>экспериментальной функции</b>",
|
||||
"Thank you for your generosity and support!": "Спасибо за вашу щедрость и поддержку",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "В настоящее время графический интерфейс калибровки DualShock не поддерживает DualSense Edge.",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "Для этого необходимо временно отключить защиту от записи, подав напряжение <b>+1,8 В</b> на определенную контрольную точку на каждом модуле.",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "Только для продвинутых пользователей! Если вы не уверены ",
|
||||
"This screen allows to finetune raw calibration data on your controller": "На этом экране можно более точно откалибровать ваш контроллер",
|
||||
"Touchpad FW Version": "Версия прошивки тачпада",
|
||||
"Touchpad ID": "ID тачпада",
|
||||
"VCM Left Barcode": "Штрих-код левого VCM",
|
||||
"VCM Right Barcode": "Штрих-код правого VCM",
|
||||
"Venom FW Version": "Версия прошивки Venom",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "Мы не несем ответсвенности за какой-либо причиненный ущерб данной модификацией",
|
||||
"You can do this in two ways:": "Это можно сделать двумя способами",
|
||||
"here": "здесь",
|
||||
"left module": "Левый модуль",
|
||||
"right module": "Правый модуль",
|
||||
"30th Anniversary": "",
|
||||
"Astro Bot": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Cosmic Red": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"Midnight Black": "",
|
||||
"Nova Pink": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"The Last of Us": "",
|
||||
"Volcanic Red": "",
|
||||
"White": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -161,15 +161,27 @@
|
||||
"Save changes permanently": "Değişiklikleri kalıcı olarak kaydet",
|
||||
"Reboot controller": "Denetleyiciyi yeniden başlat",
|
||||
"(beta)": "",
|
||||
"30th Anniversary": "",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "",
|
||||
"Astro Bot": "",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "",
|
||||
"Cancel": "",
|
||||
"Cannot lock": "",
|
||||
"Cannot store data into": "",
|
||||
"Cannot unlock": "",
|
||||
"Center X": "",
|
||||
"Center Y": "",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Cobalt Blue": "",
|
||||
"Color": "",
|
||||
"Color detection thanks to": "",
|
||||
"Controller Info": "",
|
||||
"Cosmic Red": "",
|
||||
"Debug Info": "",
|
||||
"Debug buttons": "",
|
||||
"DualSense Edge Calibration": "",
|
||||
@@ -181,16 +193,25 @@
|
||||
"FW Version": "",
|
||||
"Finetune stick calibration": "",
|
||||
"For more info or help, feel free to reach out on Discord.": "",
|
||||
"Fortnite": "",
|
||||
"Galactic Purple": "",
|
||||
"God of War Ragnarok": "",
|
||||
"Grey Camouflage": "",
|
||||
"HW Model": "",
|
||||
"Hardware": "",
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "",
|
||||
"Left Module Barcode": "",
|
||||
"Left stick": "",
|
||||
"MCU Unique ID": "",
|
||||
"Midnight Black": "",
|
||||
"More details and images": "",
|
||||
"Nova Pink": "",
|
||||
"PCBA ID": "",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "",
|
||||
"Right Module Barcode": "",
|
||||
"Right stick": "",
|
||||
"SBL FW Version": "",
|
||||
"Save": "",
|
||||
@@ -198,9 +219,13 @@
|
||||
"Show all": "",
|
||||
"Software": "",
|
||||
"Spider FW Version": "",
|
||||
"Spider-Man 2": "",
|
||||
"Starlight Blue": "",
|
||||
"Sterling Silver": "",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "",
|
||||
"Thank you for your generosity and support!": "",
|
||||
"The DualShock Calibration GUI does not currently support the DualSense Edge.": "",
|
||||
"The Last of Us": "",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "",
|
||||
"This screen allows to finetune raw calibration data on your controller": "",
|
||||
@@ -209,8 +234,12 @@
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"Volcanic Red": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "",
|
||||
"White": "",
|
||||
"You can do this in two ways:": "",
|
||||
"here": "",
|
||||
"left module": "",
|
||||
"right module": "",
|
||||
"": ""
|
||||
}
|
||||
@@ -212,5 +212,34 @@
|
||||
"We are not responsible for any damage caused by attempting this modification.": "Ми не несемо відповідальності за будь-які пошкодження, спричинені спробами цієї модифікації.",
|
||||
"You can do this in two ways:": "Ви можете зробити це двома способами:",
|
||||
"here": "тут",
|
||||
"30th Anniversary": "30-та річниця",
|
||||
"Astro Bot": "Astro Bot",
|
||||
"Cannot lock": "Не вдалося заблокувати",
|
||||
"Cannot store data into": "Не вдалося зберегти дані в",
|
||||
"Cannot unlock": "Не вдалося розблокувати",
|
||||
"Cobalt Blue": "Кобальтово-синій",
|
||||
"Color": "Колір",
|
||||
"Color detection thanks to": "Розпізнавання кольору завдяки",
|
||||
"Cosmic Red": "Космічний червоний",
|
||||
"Galactic Purple": "Галактичний пурпуровий",
|
||||
"God of War Ragnarok": "God of War: Ragnarok",
|
||||
"Grey Camouflage": "Сірий камуфляж",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "Якщо калібрування не зберігається постійно, будь ласка, перевірте підключення апаратної модифікації.",
|
||||
"Left Module Barcode": "Штрихкод лівого модуля",
|
||||
"Midnight Black": "Чорна ніч",
|
||||
"Nova Pink": "Рожевий «Нова зірка»",
|
||||
"Right Module Barcode": "Штрихкод правого модуля",
|
||||
"Starlight Blue": "Зоряний синій",
|
||||
"Sterling Silver": "Монетний срібний",
|
||||
"Volcanic Red": "Вулканічний червоний",
|
||||
"White": "Білий",
|
||||
"left module": "лівий модуль",
|
||||
"right module": "правий модуль",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Fortnite": "",
|
||||
"Spider-Man 2": "",
|
||||
"The Last of Us": "",
|
||||
"": ""
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
".authorMsg": "- 中文翻译由 <a href='https://github.com/Yyiyun'>Eythavon</a> <a href='https://space.bilibili.com/7173897'>坩埚钳特大号</a> 提供(请不要相信镜像网站上的任何广告!)",
|
||||
".authorMsg": "- 中文翻译由 <a href='https://github.com/Yyiyun'>Eythavon</a> <a href='https://space.bilibili.com/7173897'>坩埚钳特大号</a> <a href='https://space.bilibili.com/185181540'>修手柄的小丁</a> 提供",
|
||||
"DualShock Calibration GUI": "手柄校准界面",
|
||||
"Unsupported browser. Please use a web browser with WebHID support (e.g. Chrome).": "浏览器不支持。请使用支持 WebHID 的浏览器 (例如 Chrome)。",
|
||||
"Connect": "连接",
|
||||
@@ -198,19 +198,49 @@
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "我正在积极致力于兼容,主要研究将数据存储到摇杆模块中。",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "如果这个工具对你有所帮助,或者你希望看到对于DualSense Edge的支持更快到来,请考虑支持这个项目。",
|
||||
"Thank you for your generosity and support!": "感谢您的慷慨和支持!",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "<b>外部</b>: 无需打开手柄,直接对可见的测试点施加+1.8V",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller.": "<b>外部</b>:无需打开手柄,直接对可见的测试点施加+1.8V",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "<b>内部</b>:将+1.8V电源与写保护测试点飞线连接。",
|
||||
"Calibration is being stored in the stick modules.": "校准数据正在存储于摇杆模块中。",
|
||||
"DualSense Edge Calibration": "DualSense Edge校准",
|
||||
"For more info or help, feel free to reach out on Discord.": "需要更多信息或帮助,请随时在Discord上联系。",
|
||||
"More details and images": "更多细节和图像",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "请将DualShock 4、DualSense 或 DualSense Edge 手柄连接到您的电脑,然后按下“连接”。",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "请注意:DS Edge上的摇杆模块<b>无法仅通过软件进行校准</b>。要在摇杆的内部存储器上存储自定义校准,需要进行<b>硬件修改</b>。",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.": "请注意:DS Edge上的摇杆模块<b>无法仅通过软件进行校准</b>。",
|
||||
"To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "要在摇杆的内部存储器上存储自定义校准,需要进行<b>硬件修改</b>。",
|
||||
"Support for calibrating DualSense Edge stick modules is now available as an <b>experimental feature</b>.": "现已提供校准 DualSense Edge 摇杆模块的支持,此功能为<b>实验性功能</b>。",
|
||||
"This involves temporarily disabling write protection by applying <b>+1.8V</b> to a specific test point on each module.": "这涉及到通过对每个模块上的特定测试点施加<b>+1.8V</b>电压来暂时禁用写保护。",
|
||||
"This is only for advanced users. If you're not sure what you're doing, please do not attempt it.": "这仅适用于高级用户。如果您不确定自己在做什么,请不要尝试。",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "我们不对因尝试此修改而造成的任何损坏负责。",
|
||||
"You can do this in two ways:": "你可以用两种方式来做",
|
||||
"here": "这里",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "如果校准没有永久生效,请检查硬件模块的接线。",
|
||||
"Cannot lock": "无法锁定",
|
||||
"Cannot store data into": "无法将数据存储到",
|
||||
"Cannot unlock": "无法解锁",
|
||||
"Color": "颜色",
|
||||
"Color detection thanks to": "颜色检测由",
|
||||
"Left Module Barcode": "左侧模块条形码",
|
||||
"Right Module Barcode": "右侧模块条形码",
|
||||
"left module": "左侧模块",
|
||||
"right module": "右侧模块",
|
||||
"30th Anniversary": "30周年纪念版",
|
||||
"Astro Bot": "宇宙机器人",
|
||||
"Cobalt Blue": "钴晶蓝",
|
||||
"Cosmic Red": "星辰红",
|
||||
"Galactic Purple": "银河紫",
|
||||
"God of War Ragnarok": "战神:诸神黄昏",
|
||||
"Grey Camouflage": "深灰迷彩",
|
||||
"Midnight Black": "午夜黑",
|
||||
"Nova Pink": "新星粉",
|
||||
"Starlight Blue": "星光蓝",
|
||||
"Sterling Silver": "亮灰银",
|
||||
"Volcanic Red": "火山红",
|
||||
"White": "白色",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Fortnite": "",
|
||||
"Spider-Man 2": "",
|
||||
"The Last of Us": "",
|
||||
"": ""
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
".authorMsg": "- 中文(繁體)翻譯由 JEFF 提供",
|
||||
".authorMsg": "- 中文(繁體)翻譯由 JEFF <a href='https://space.bilibili.com/185181540'>修手柄的小丁</a> 提供",
|
||||
"DualShock Calibration GUI": "手把校準界面",
|
||||
"Unsupported browser. Please use a web browser with WebHID support (e.g. Chrome).": "不支持的瀏覽器。請使用支持 WebHID 的瀏覽器 (例如 Chrome)。",
|
||||
"Connect": "連結",
|
||||
@@ -161,10 +161,8 @@
|
||||
"Save changes permanently": "永久保存更改",
|
||||
"Reboot controller": "重啟手把",
|
||||
"(beta)": "測試版本",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller": "<b>外部方式</b>:直接將 +1.8V 電壓施加到可見的測試點,無需打開手把",
|
||||
"<b>Externally</b>: by applying +1.8V directly to the visible test point without opening the controller.": "<b>外部方式</b>:直接將 +1.8V 電壓施加到可見的測試點,無需打開手把",
|
||||
"<b>Internally</b>: by soldering a wire from a +1.8V source to the write-protect TP.": "<b>內部方式</b>:從 +1.8V 電源點焊接一條導線至寫入保護測試點(TP)",
|
||||
"Battery Barcode": "",
|
||||
"Bluetooth Address": "",
|
||||
"Calibration is being stored in the stick modules.": "校正資料正被儲存到搖桿模組中。",
|
||||
"Cancel": "取消",
|
||||
"Center X": "X軸中心",
|
||||
@@ -186,15 +184,14 @@
|
||||
"I'm actively working on adding compatibility, the primary challenge lies in storing data into the stick modules.": "我正在積極處理相容性的問題,主要的挑戰在於將資料儲存到記憶模組中。",
|
||||
"If this tool has been helpful to you or you want to see DualSense Edge support arrive faster, please consider supporting the project with a": "如果這個工具對您有所幫助,或您希望看到 DualSense Edge 支援更快推出,請考慮通過以下方式支持該專案:",
|
||||
"Left stick": "左搖桿電壓(mV)",
|
||||
"MCU Unique ID": "",
|
||||
"More details and images": "更多詳情與圖片",
|
||||
"PCBA ID": "PCBA ID",
|
||||
"Please connect a DualShock 4, a DualSense or DualSense Edge controller to your computer and press Connect.": "請將 DualShock 4、DualSense 或 DualSense Edge 手把連接到您的電腦,然後按下「連接」。",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "請注意:DS Edge 的搖桿模組<b>無法僅透過軟體進行校正</b>。若要將自訂校正資料儲存到搖桿的內部記憶體中,則需要進行<b>硬體修改</b>。",
|
||||
"Please note: the stick modules on the DS Edge <b>cannot be calibrated via software alone</b>.": "請註意:DS Edge上的搖桿模塊<b>無法僅通過軟件進行校準</b>。",
|
||||
"To store a custom calibration on the stick's internal memory, a <b>hardware modification</b> is required.": "要在搖桿的內部存儲器上存儲自定義校準,需要進行<b>硬件修改</b>。",
|
||||
"Right stick": "右搖桿電壓(mV)",
|
||||
"SBL FW Version": "SBL韌體版本",
|
||||
"Save": "儲存",
|
||||
"Serial Number": "",
|
||||
"Show all": "顯示全部資訊",
|
||||
"Software": "軟體",
|
||||
"Spider FW Version": "Spider韌體版本",
|
||||
@@ -206,11 +203,44 @@
|
||||
"This screen allows to finetune raw calibration data on your controller": "此畫面可讓您微調手把上的原始校正資料",
|
||||
"Touchpad FW Version": "觸摸版韌體版本",
|
||||
"Touchpad ID": "觸摸版ID",
|
||||
"VCM Left Barcode": "",
|
||||
"VCM Right Barcode": "",
|
||||
"Venom FW Version": "",
|
||||
"We are not responsible for any damage caused by attempting this modification.": "我們不對嘗試此修改所造成的任何損壞負責。",
|
||||
"You can do this in two ways:": "您可以透過兩種方式來完成這項操作:",
|
||||
"here": "",
|
||||
"here": "這裏",
|
||||
"If the calibration is not stored permanently, please double-check the wirings of the hardware mod.": "如果校準沒有永久生效,請檢查硬件模塊的接線。",
|
||||
"Battery Barcode": "電池條形碼",
|
||||
"Bluetooth Address": "藍牙地址",
|
||||
"Cannot lock": "無法鎖定",
|
||||
"Cannot store data into": "無法將數據存儲到",
|
||||
"Cannot unlock": "無法解鎖",
|
||||
"Color": "顏色",
|
||||
"Color detection thanks to": "顏色檢測由",
|
||||
"Left Module Barcode": "左側模塊條形碼",
|
||||
"MCU Unique ID": "MCU唯壹ID",
|
||||
"Right Module Barcode": "右側模塊條形碼",
|
||||
"Serial Number": "序列號",
|
||||
"VCM Left Barcode": "VCM左條形碼",
|
||||
"VCM Right Barcode": "VCM右條形碼",
|
||||
"Venom FW Version": "Venom固件版本",
|
||||
"left module": "左側模塊",
|
||||
"right module": "右側模塊",
|
||||
"30th Anniversary": "30週年紀念版",
|
||||
"Astro Bot": "宇宙機器人",
|
||||
"Cobalt Blue": "鈷藍色",
|
||||
"Cosmic Red": "星塵紅",
|
||||
"Galactic Purple": "銀河紫",
|
||||
"God of War Ragnarok": "戰神:諸神黃昏",
|
||||
"Grey Camouflage": "深灰迷彩",
|
||||
"Midnight Black": "午夜黑",
|
||||
"Nova Pink": "星幻粉",
|
||||
"Starlight Blue": "星光藍",
|
||||
"Sterling Silver": "亮灰銀",
|
||||
"Volcanic Red": "火山紅",
|
||||
"White": "白色",
|
||||
"Chroma Indigo": "",
|
||||
"Chroma Pearl": "",
|
||||
"Chroma Teal": "",
|
||||
"Fortnite": "",
|
||||
"Spider-Man 2": "",
|
||||
"The Last of Us": "",
|
||||
"": ""
|
||||
}
|
||||
Reference in New Issue
Block a user