Prepare for future translation of the application

This commit is contained in:
Pierre HUBERT 2020-05-17 15:59:43 +02:00
parent fc7c920a70
commit 1ccb3eb36d

View File

@ -303,4 +303,13 @@ async function showConfirmDialog(msg) {
res(c == true); res(c == true);
}); });
}) })
}
/**
* Prepare for potential future translation system
*
* @param {String} input Input string
*/
function tr(input) {
return input;
} }