mirror of
https://github.com/Pandipipas/scoreko-electron-dev.git
synced 2026-06-06 05:32:06 +00:00
Translate Spanish text to English across docs and code
This commit is contained in:
@@ -19,7 +19,7 @@ function getBaseConfig(): AppRuntimeConfig {
|
||||
};
|
||||
}
|
||||
|
||||
test("resolveAppIconPath prioriza iconPathOverride cuando existe", () => {
|
||||
test("resolveAppIconPath prioritizes iconPathOverride when present", () => {
|
||||
const appConfig: AppRuntimeConfig = {
|
||||
...getBaseConfig(),
|
||||
iconPathOverride: "/custom/icon.ico",
|
||||
@@ -30,7 +30,7 @@ test("resolveAppIconPath prioriza iconPathOverride cuando existe", () => {
|
||||
assert.equal(iconPath, "/custom/icon.ico");
|
||||
});
|
||||
|
||||
test("resolveAppIconPath cae al primer icono por defecto existente", () => {
|
||||
test("resolveAppIconPath falls back to the first existing default icon", () => {
|
||||
const appConfig = getBaseConfig();
|
||||
const expectedIconPath = path.join("/app", "static", "icons", "icon.png");
|
||||
|
||||
@@ -39,7 +39,7 @@ test("resolveAppIconPath cae al primer icono por defecto existente", () => {
|
||||
assert.equal(iconPath, expectedIconPath);
|
||||
});
|
||||
|
||||
test("resolveAppIconPath devuelve undefined cuando no hay iconos", () => {
|
||||
test("resolveAppIconPath returns undefined when no icons exist", () => {
|
||||
const appConfig = getBaseConfig();
|
||||
|
||||
const iconPath = resolveAppIconPath(appConfig, "/app", () => false);
|
||||
|
||||
Reference in New Issue
Block a user