Translate Spanish text to English across docs and code

This commit is contained in:
Pandipipas
2026-02-24 00:37:48 +01:00
parent fdc013bdb7
commit 12b85e6579
13 changed files with 262 additions and 282 deletions
+3 -3
View File
@@ -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);