shiva-code 0.8.15 → 0.8.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -680,15 +680,17 @@ function startCallbackServer(port) {
|
|
|
680
680
|
}
|
|
681
681
|
res.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
|
|
682
682
|
res.end(getCallbackHtml("success", { email }));
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
683
|
+
setTimeout(() => {
|
|
684
|
+
server.close();
|
|
685
|
+
resolve({
|
|
686
|
+
token,
|
|
687
|
+
user: {
|
|
688
|
+
id: parseInt(userId, 10),
|
|
689
|
+
email,
|
|
690
|
+
tier: tier || "free"
|
|
691
|
+
}
|
|
692
|
+
});
|
|
693
|
+
}, 100);
|
|
692
694
|
return;
|
|
693
695
|
}
|
|
694
696
|
res.writeHead(200, { "Content-Type": "text/html; charset=utf-8" });
|
|
@@ -697,7 +699,7 @@ function startCallbackServer(port) {
|
|
|
697
699
|
const timeout = setTimeout(() => {
|
|
698
700
|
server.close();
|
|
699
701
|
reject(new Error("Login-Timeout - keine Antwort erhalten"));
|
|
700
|
-
},
|
|
702
|
+
}, 3e5);
|
|
701
703
|
server.once("close", () => {
|
|
702
704
|
clearTimeout(timeout);
|
|
703
705
|
});
|
|
@@ -727,7 +729,7 @@ async function loginWithBrowser() {
|
|
|
727
729
|
log.newline();
|
|
728
730
|
console.log(` ${colors.cyan(loginUrl)}`);
|
|
729
731
|
log.newline();
|
|
730
|
-
log.dim("Warte auf Anmeldung... (Timeout:
|
|
732
|
+
log.dim("Warte auf Anmeldung... (Timeout: 5 Minuten)");
|
|
731
733
|
log.newline();
|
|
732
734
|
const result = await serverPromise;
|
|
733
735
|
setAuth(result.token, result.user);
|
|
@@ -1001,7 +1003,8 @@ var de_default = {
|
|
|
1001
1003
|
noResults: "Keine Ergebnisse gefunden",
|
|
1002
1004
|
enterQuery: "Suchbegriff eingeben:",
|
|
1003
1005
|
searching: "Suche...",
|
|
1004
|
-
resultsFound: "{count} Ergebnis(se) gefunden"
|
|
1006
|
+
resultsFound: "{count} Ergebnis(se) gefunden",
|
|
1007
|
+
inProjects: "in {count} Projekten"
|
|
1005
1008
|
},
|
|
1006
1009
|
forget: {
|
|
1007
1010
|
description: "Memories loschen (GDPR)",
|
|
@@ -1009,7 +1012,10 @@ var de_default = {
|
|
|
1009
1012
|
warning: "WARNUNG: Alle Memories loschen",
|
|
1010
1013
|
confirmDelete: "Memories wirklich loschen?",
|
|
1011
1014
|
deleted: "Memories geloscht",
|
|
1012
|
-
selectMemories: "Memories zum Loschen auswahlen:"
|
|
1015
|
+
selectMemories: "Memories zum Loschen auswahlen:",
|
|
1016
|
+
loadingMemories: "Lade Memories...",
|
|
1017
|
+
projectLabel: "Projekt:",
|
|
1018
|
+
pathLabel: "Pfad:"
|
|
1013
1019
|
},
|
|
1014
1020
|
sessions: {
|
|
1015
1021
|
description: "Alle Claude Code Sessions auflisten",
|
|
@@ -1609,6 +1615,7 @@ var de_default = {
|
|
|
1609
1615
|
started: "Docker-Container gestarted",
|
|
1610
1616
|
stopped: "Docker-Container gestoppt",
|
|
1611
1617
|
statusDesc: "Docker-Verfugbarkeit prufen",
|
|
1618
|
+
startDesc: "Docker-Container starten",
|
|
1612
1619
|
enableDesc: "Docker-Modus aktivieren",
|
|
1613
1620
|
disableDesc: "Docker-Modus deaktivieren",
|
|
1614
1621
|
containersDesc: "SHIVA Container anzeigen",
|
|
@@ -1772,61 +1779,6 @@ var de_default = {
|
|
|
1772
1779
|
unknownError: "Unbekannter Fehler",
|
|
1773
1780
|
cancelled: "Abgebrochen"
|
|
1774
1781
|
},
|
|
1775
|
-
workflow: {
|
|
1776
|
-
description: "Automatisierte Workflows ausfuhren",
|
|
1777
|
-
header: "SHIVA Code - Workflows",
|
|
1778
|
-
listDesc: "Verfugbare Workflows anzeigen",
|
|
1779
|
-
runDesc: "Workflow ausfuhren",
|
|
1780
|
-
createDesc: "Neuen Workflow erstellen",
|
|
1781
|
-
deleteDesc: "Workflow loschen",
|
|
1782
|
-
workflowsTitle: "SHIVA Code - Workflows",
|
|
1783
|
-
noWorkflows: "Keine Workflows definiert",
|
|
1784
|
-
createHint: "Erstelle: shiva workflow create <name>",
|
|
1785
|
-
runHint: "Ausfuhren: shiva workflow run <name>",
|
|
1786
|
-
builtIn: "Eingebaut:",
|
|
1787
|
-
custom: "Benutzerdefiniert:",
|
|
1788
|
-
workflowNotFound: "Workflow nicht gefunden: {name}",
|
|
1789
|
-
availableHint: "Verfugbare Workflows: shiva workflow list",
|
|
1790
|
-
workflowLabel: "Workflow: {name}",
|
|
1791
|
-
dryRunMode: "Dry-run Modus - keine Aktionen werden ausgefuhrt",
|
|
1792
|
-
wouldExecute: "Wurde ausfuhren: {type}",
|
|
1793
|
-
workflowComplete: "Workflow abgeschlossen",
|
|
1794
|
-
executing: "Ausfuhren...",
|
|
1795
|
-
descriptionPrompt: "Beschreibung:",
|
|
1796
|
-
stepTypePrompt: "Schritt-Typ:",
|
|
1797
|
-
stepNamePrompt: "Schritt-Name:",
|
|
1798
|
-
addMoreStep: "Weiteren Schritt hinzufugen?",
|
|
1799
|
-
workflowCreated: 'Workflow "{name}" erstellt',
|
|
1800
|
-
cannotDeleteBuiltin: "Eingebaute Workflows konnen nicht geloscht werden",
|
|
1801
|
-
confirmDeleteWorkflow: 'Workflow "{name}" wirklich loschen?',
|
|
1802
|
-
workflowDeleted: 'Workflow "{name}" geloscht',
|
|
1803
|
-
stepChoiceIssues: "Issues anzeigen",
|
|
1804
|
-
stepChoicePRs: "PRs anzeigen",
|
|
1805
|
-
stepChoicePackage: "Package starten",
|
|
1806
|
-
stepChoiceSync: "Sync ausfuhren",
|
|
1807
|
-
githubNotAvailable: "GitHub nicht verfugbar",
|
|
1808
|
-
noOpenIssues: "Keine offenen Issues",
|
|
1809
|
-
noOpenPRs: "Keine offenen PRs",
|
|
1810
|
-
noPackageSpecified: "Kein Package angegeben",
|
|
1811
|
-
packageNotFound: 'Package "{name}" nicht gefunden',
|
|
1812
|
-
startingPackage: 'Starte Package "{name}"...',
|
|
1813
|
-
notAuthenticated: "Nicht authentifiziert",
|
|
1814
|
-
syncSkipped: "Sync ubersprungen (verwende shiva sync --all)",
|
|
1815
|
-
unknownStepType: "Unbekannter Schritt-Typ: {type}",
|
|
1816
|
-
stepError: "Fehler: {error}",
|
|
1817
|
-
openIssues: "{project}: {count} offene Issues",
|
|
1818
|
-
openPRs: "{project}: {count} offene PRs",
|
|
1819
|
-
morningRoutineName: "Morning Routine",
|
|
1820
|
-
morningRoutineDesc: "Start des Arbeitstages: Issues prufen, Top-Projekte starten",
|
|
1821
|
-
reviewName: "Code Review",
|
|
1822
|
-
reviewDesc: "Offene PRs und Issues durchgehen",
|
|
1823
|
-
checkIssues: "Issues prufen",
|
|
1824
|
-
checkPRs: "PRs prufen",
|
|
1825
|
-
openPRsStep: "Offene PRs",
|
|
1826
|
-
openIssuesStep: "Offene Issues",
|
|
1827
|
-
dryRunOption: "Nur anzeigen, was ausgefuhrt wurde",
|
|
1828
|
-
cancelled: "Abgebrochen"
|
|
1829
|
-
},
|
|
1830
1782
|
hook: {
|
|
1831
1783
|
description: "Claude Code Hook Integration verwalten",
|
|
1832
1784
|
header: "SHIVA Code - Hooks",
|
|
@@ -2025,93 +1977,123 @@ var de_default = {
|
|
|
2025
1977
|
}
|
|
2026
1978
|
},
|
|
2027
1979
|
package: {
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
1980
|
+
deprecatedDescription: "[Veraltet] Nutze 'shiva workflow' stattdessen",
|
|
1981
|
+
deprecatedWarning: "'shiva package' ist veraltet und wird in einer zukunftigen Version entfernt.",
|
|
1982
|
+
useWorkflowInstead: "Nutze 'shiva workflow' stattdessen.",
|
|
1983
|
+
hint: "Tipp: Nutze 'shiva workflow' statt 'shiva package'"
|
|
1984
|
+
},
|
|
1985
|
+
workflow: {
|
|
1986
|
+
description: "Projekt-Workflows verwalten",
|
|
1987
|
+
notFound: "Workflow nicht gefunden: {name}",
|
|
1988
|
+
list: {
|
|
1989
|
+
description: "Alle Workflows auflisten",
|
|
1990
|
+
jsonOption: "Ausgabe als JSON"
|
|
1991
|
+
},
|
|
2031
1992
|
listFunc: {
|
|
2032
|
-
header: "SHIVA Code -
|
|
2033
|
-
|
|
2034
|
-
createHint: '
|
|
1993
|
+
header: "SHIVA Code - Workflows",
|
|
1994
|
+
noWorkflows: "Keine Workflows vorhanden.",
|
|
1995
|
+
createHint: 'Workflow erstellen: shiva workflow create "Name"',
|
|
2035
1996
|
projectCount: "{count} Projekte",
|
|
2036
1997
|
andMore: "...und {count} weitere",
|
|
2037
|
-
total: "Gesamt: {
|
|
1998
|
+
total: "Gesamt: {workflows} Workflows, {projects} Projekte"
|
|
2038
1999
|
},
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2000
|
+
create: {
|
|
2001
|
+
description: "Neuen Workflow erstellen",
|
|
2002
|
+
descriptionOption: "Beschreibung",
|
|
2003
|
+
sequentialOption: "Projekte sequentiell starten",
|
|
2004
|
+
created: 'Workflow "{name}" erstellt',
|
|
2005
|
+
addProjectsHint: "Projekt hinzufugen:"
|
|
2006
|
+
},
|
|
2007
|
+
delete: {
|
|
2008
|
+
description: "Workflow loschen",
|
|
2009
|
+
forceOption: "Ohne Bestatigung loschen",
|
|
2010
|
+
confirmMessage: 'Workflow "{name}" ({count} Projekte) wirklich loschen?',
|
|
2011
|
+
deleted: 'Workflow "{name}" geloscht'
|
|
2012
|
+
},
|
|
2013
|
+
add: {
|
|
2014
|
+
description: "Projekt zu Workflow hinzufugen",
|
|
2015
|
+
added: '"{project}" zu "{workflow}" hinzugefugt',
|
|
2016
|
+
projectCount: "{count} Projekte in Workflow"
|
|
2017
|
+
},
|
|
2018
|
+
remove: {
|
|
2019
|
+
description: "Projekt aus Workflow entfernen",
|
|
2020
|
+
removed: '"{project}" aus "{workflow}" entfernt',
|
|
2021
|
+
projectsRemaining: "{count} Projekte verbleiben"
|
|
2022
|
+
},
|
|
2023
|
+
show: {
|
|
2024
|
+
description: "Workflow-Details anzeigen",
|
|
2025
|
+
launchOrder: "Launch Order",
|
|
2026
|
+
projects: "Projekte",
|
|
2027
|
+
created: "Erstellt",
|
|
2028
|
+
modified: "Geandert",
|
|
2029
|
+
projectsLabel: "Projekte:",
|
|
2030
|
+
noProjects: "Keine Projekte in diesem Workflow.",
|
|
2031
|
+
addHint: 'Hinzufugen mit: shiva workflow add "{name}" ./projekt-pfad'
|
|
2032
|
+
},
|
|
2033
|
+
start: {
|
|
2034
|
+
description: "Alle Projekte eines Workflows starten",
|
|
2035
|
+
newOption: "Neue Sessions statt Resume",
|
|
2036
|
+
terminalOption: "Terminal-Typ (auto, gnome, konsole, tmux)",
|
|
2037
|
+
noProjects: 'Workflow "{name}" hat keine Projekte.',
|
|
2038
|
+
preparing: "Bereite Projekte vor...",
|
|
2039
|
+
noValidProjects: "Keine gultigen Projekte gefunden.",
|
|
2040
|
+
terminal: "Terminal",
|
|
2041
|
+
projects: "Projekte",
|
|
2042
|
+
new: "neu",
|
|
2043
|
+
resume: "resume",
|
|
2044
|
+
starting: "Starte Projekte..."
|
|
2045
|
+
},
|
|
2046
|
+
push: {
|
|
2047
|
+
description: "Workflows in Cloud sichern",
|
|
2048
|
+
nameOption: "Nur ein bestimmter Workflow",
|
|
2049
|
+
noWorkflows: "Keine Workflows zum Synchronisieren gefunden",
|
|
2050
|
+
syncing: "Synchronisiere Workflows...",
|
|
2051
|
+
synced: "{count} Workflows in Cloud gesichert",
|
|
2052
|
+
failed: "{count} Workflows konnten nicht gesichert werden"
|
|
2053
|
+
},
|
|
2054
|
+
pull: {
|
|
2055
|
+
description: "Workflows aus Cloud laden",
|
|
2056
|
+
forceOption: "Lokale Workflows uberschreiben",
|
|
2057
|
+
jsonOption: "Ausgabe als JSON",
|
|
2058
|
+
loading: "Lade Workflows aus Cloud...",
|
|
2059
|
+
noWorkflows: "Keine Workflows in Cloud gefunden",
|
|
2060
|
+
uploadHint: "Hochladen mit: shiva workflow push",
|
|
2061
|
+
found: "{count} Workflows in Cloud gefunden",
|
|
2062
|
+
skipped: "{name} ubersprungen (lokal vorhanden)",
|
|
2063
|
+
imported: "{name} importiert",
|
|
2064
|
+
importedCount: "{count} Workflows importiert",
|
|
2065
|
+
skippedCount: "{count} ubersprungen",
|
|
2066
|
+
loadError: "Fehler beim Laden"
|
|
2067
|
+
},
|
|
2068
|
+
sync: {
|
|
2069
|
+
description: "Workflows mit Cloud synchronisieren",
|
|
2070
|
+
syncing: "Synchronisiere Workflows...",
|
|
2071
|
+
synced: "Workflows synchronisiert",
|
|
2072
|
+
localToCloud: "{count} lokale Workflows -> Cloud",
|
|
2073
|
+
cloudToLocal: "{count} neue Workflows <- Cloud",
|
|
2074
|
+
total: "{count} Workflows total"
|
|
2075
|
+
},
|
|
2076
|
+
cloudDelete: {
|
|
2077
|
+
description: "Workflow aus Cloud loschen",
|
|
2078
|
+
deleted: 'Workflow "{name}" aus Cloud geloscht',
|
|
2079
|
+
error: "Fehler beim Loschen"
|
|
2080
|
+
}
|
|
2105
2081
|
},
|
|
2106
2082
|
context: {
|
|
2107
2083
|
description: "Context anzeigen",
|
|
2108
2084
|
header: "SHIVA Code - Context",
|
|
2109
|
-
noContext: "Kein Context gefunden"
|
|
2085
|
+
noContext: "Kein Context gefunden",
|
|
2086
|
+
collectingContext: "Sammle Kontext...",
|
|
2087
|
+
projectLabel: "Projekt:",
|
|
2088
|
+
pathLabel: "Pfad:",
|
|
2089
|
+
claudeMdLabel: "CLAUDE.md",
|
|
2090
|
+
claudeMdPresent: "Vorhanden ({lines} Zeilen, {size})"
|
|
2110
2091
|
},
|
|
2111
2092
|
tags: {
|
|
2112
2093
|
description: "Session-Tags verwalten",
|
|
2113
2094
|
header: "SHIVA Code - Tags",
|
|
2114
|
-
noTags: "Keine Tags gefunden"
|
|
2095
|
+
noTags: "Keine Tags gefunden",
|
|
2096
|
+
addHint: "Tag hinzuf\xFCgen: shiva tags add <session-id> <tag>"
|
|
2115
2097
|
},
|
|
2116
2098
|
export: {
|
|
2117
2099
|
description: "Sessions exportieren",
|
|
@@ -3070,7 +3052,8 @@ var en_default = {
|
|
|
3070
3052
|
noResults: "No results found",
|
|
3071
3053
|
enterQuery: "Enter search term:",
|
|
3072
3054
|
searching: "Searching...",
|
|
3073
|
-
resultsFound: "{count} result(s) found"
|
|
3055
|
+
resultsFound: "{count} result(s) found",
|
|
3056
|
+
inProjects: "in {count} projects"
|
|
3074
3057
|
},
|
|
3075
3058
|
forget: {
|
|
3076
3059
|
description: "Delete memories (GDPR)",
|
|
@@ -3078,7 +3061,10 @@ var en_default = {
|
|
|
3078
3061
|
warning: "WARNING: Delete all memories",
|
|
3079
3062
|
confirmDelete: "Really delete memories?",
|
|
3080
3063
|
deleted: "Memories deleted",
|
|
3081
|
-
selectMemories: "Select memories to delete:"
|
|
3064
|
+
selectMemories: "Select memories to delete:",
|
|
3065
|
+
loadingMemories: "Loading memories...",
|
|
3066
|
+
projectLabel: "Project:",
|
|
3067
|
+
pathLabel: "Path:"
|
|
3082
3068
|
},
|
|
3083
3069
|
sessions: {
|
|
3084
3070
|
description: "List all Claude Code sessions",
|
|
@@ -3580,6 +3566,7 @@ var en_default = {
|
|
|
3580
3566
|
started: "Docker container started",
|
|
3581
3567
|
stopped: "Docker container stopped",
|
|
3582
3568
|
statusDesc: "Check Docker availability",
|
|
3569
|
+
startDesc: "Start Docker container",
|
|
3583
3570
|
enableDesc: "Enable Docker mode",
|
|
3584
3571
|
disableDesc: "Disable Docker mode",
|
|
3585
3572
|
containersDesc: "Show SHIVA containers",
|
|
@@ -3682,61 +3669,6 @@ var en_default = {
|
|
|
3682
3669
|
unknownError: "Unknown error",
|
|
3683
3670
|
cancelled: "Cancelled"
|
|
3684
3671
|
},
|
|
3685
|
-
workflow: {
|
|
3686
|
-
description: "Run automated workflows",
|
|
3687
|
-
header: "SHIVA Code - Workflows",
|
|
3688
|
-
listDesc: "Show available workflows",
|
|
3689
|
-
runDesc: "Run workflow",
|
|
3690
|
-
createDesc: "Create new workflow",
|
|
3691
|
-
deleteDesc: "Delete workflow",
|
|
3692
|
-
workflowsTitle: "SHIVA Code - Workflows",
|
|
3693
|
-
noWorkflows: "No workflows defined",
|
|
3694
|
-
createHint: "Create: shiva workflow create <name>",
|
|
3695
|
-
runHint: "Run: shiva workflow run <name>",
|
|
3696
|
-
builtIn: "Built-in:",
|
|
3697
|
-
custom: "Custom:",
|
|
3698
|
-
workflowNotFound: "Workflow not found: {name}",
|
|
3699
|
-
availableHint: "Available workflows: shiva workflow list",
|
|
3700
|
-
workflowLabel: "Workflow: {name}",
|
|
3701
|
-
dryRunMode: "Dry-run mode - no actions will be executed",
|
|
3702
|
-
wouldExecute: "Would execute: {type}",
|
|
3703
|
-
workflowComplete: "Workflow complete",
|
|
3704
|
-
executing: "Executing...",
|
|
3705
|
-
descriptionPrompt: "Description:",
|
|
3706
|
-
stepTypePrompt: "Step type:",
|
|
3707
|
-
stepNamePrompt: "Step name:",
|
|
3708
|
-
addMoreStep: "Add another step?",
|
|
3709
|
-
workflowCreated: 'Workflow "{name}" created',
|
|
3710
|
-
cannotDeleteBuiltin: "Built-in workflows cannot be deleted",
|
|
3711
|
-
confirmDeleteWorkflow: 'Really delete workflow "{name}"?',
|
|
3712
|
-
workflowDeleted: 'Workflow "{name}" deleted',
|
|
3713
|
-
stepChoiceIssues: "Show issues",
|
|
3714
|
-
stepChoicePRs: "Show PRs",
|
|
3715
|
-
stepChoicePackage: "Start package",
|
|
3716
|
-
stepChoiceSync: "Run sync",
|
|
3717
|
-
githubNotAvailable: "GitHub not available",
|
|
3718
|
-
noOpenIssues: "No open issues",
|
|
3719
|
-
noOpenPRs: "No open PRs",
|
|
3720
|
-
noPackageSpecified: "No package specified",
|
|
3721
|
-
packageNotFound: 'Package "{name}" not found',
|
|
3722
|
-
startingPackage: 'Starting package "{name}"...',
|
|
3723
|
-
notAuthenticated: "Not authenticated",
|
|
3724
|
-
syncSkipped: "Sync skipped (use shiva sync --all)",
|
|
3725
|
-
unknownStepType: "Unknown step type: {type}",
|
|
3726
|
-
stepError: "Error: {error}",
|
|
3727
|
-
openIssues: "{project}: {count} open issues",
|
|
3728
|
-
openPRs: "{project}: {count} open PRs",
|
|
3729
|
-
morningRoutineName: "Morning Routine",
|
|
3730
|
-
morningRoutineDesc: "Start of workday: Check issues, start top projects",
|
|
3731
|
-
reviewName: "Code Review",
|
|
3732
|
-
reviewDesc: "Review open PRs and issues",
|
|
3733
|
-
checkIssues: "Check issues",
|
|
3734
|
-
checkPRs: "Check PRs",
|
|
3735
|
-
openPRsStep: "Open PRs",
|
|
3736
|
-
openIssuesStep: "Open Issues",
|
|
3737
|
-
dryRunOption: "Only show what would be executed",
|
|
3738
|
-
cancelled: "Cancelled"
|
|
3739
|
-
},
|
|
3740
3672
|
hook: {
|
|
3741
3673
|
description: "Manage Claude Code hook integration",
|
|
3742
3674
|
header: "SHIVA Code - Hooks",
|
|
@@ -3809,42 +3741,123 @@ var en_default = {
|
|
|
3809
3741
|
}
|
|
3810
3742
|
},
|
|
3811
3743
|
package: {
|
|
3812
|
-
|
|
3813
|
-
|
|
3814
|
-
|
|
3744
|
+
deprecatedDescription: "[Deprecated] Use 'shiva workflow' instead",
|
|
3745
|
+
deprecatedWarning: "'shiva package' is deprecated and will be removed in a future version.",
|
|
3746
|
+
useWorkflowInstead: "Use 'shiva workflow' instead.",
|
|
3747
|
+
hint: "Tip: Use 'shiva workflow' instead of 'shiva package'"
|
|
3748
|
+
},
|
|
3749
|
+
workflow: {
|
|
3750
|
+
description: "Manage project workflows",
|
|
3751
|
+
notFound: "Workflow not found: {name}",
|
|
3752
|
+
list: {
|
|
3753
|
+
description: "List all workflows",
|
|
3754
|
+
jsonOption: "Output as JSON"
|
|
3755
|
+
},
|
|
3815
3756
|
listFunc: {
|
|
3816
|
-
header: "SHIVA Code -
|
|
3817
|
-
|
|
3818
|
-
createHint: 'Create
|
|
3757
|
+
header: "SHIVA Code - Workflows",
|
|
3758
|
+
noWorkflows: "No workflows available.",
|
|
3759
|
+
createHint: 'Create workflow: shiva workflow create "Name"',
|
|
3819
3760
|
projectCount: "{count} projects",
|
|
3820
3761
|
andMore: "...and {count} more",
|
|
3821
|
-
total: "Total: {
|
|
3762
|
+
total: "Total: {workflows} workflows, {projects} projects"
|
|
3822
3763
|
},
|
|
3823
|
-
|
|
3824
|
-
|
|
3825
|
-
|
|
3826
|
-
|
|
3827
|
-
|
|
3828
|
-
|
|
3829
|
-
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3834
|
-
|
|
3835
|
-
|
|
3836
|
-
|
|
3837
|
-
|
|
3764
|
+
create: {
|
|
3765
|
+
description: "Create new workflow",
|
|
3766
|
+
descriptionOption: "Description",
|
|
3767
|
+
sequentialOption: "Start projects sequentially",
|
|
3768
|
+
created: 'Workflow "{name}" created',
|
|
3769
|
+
addProjectsHint: "Add project:"
|
|
3770
|
+
},
|
|
3771
|
+
delete: {
|
|
3772
|
+
description: "Delete workflow",
|
|
3773
|
+
forceOption: "Delete without confirmation",
|
|
3774
|
+
confirmMessage: 'Really delete workflow "{name}" ({count} projects)?',
|
|
3775
|
+
deleted: 'Workflow "{name}" deleted'
|
|
3776
|
+
},
|
|
3777
|
+
add: {
|
|
3778
|
+
description: "Add project to workflow",
|
|
3779
|
+
added: '"{project}" added to "{workflow}"',
|
|
3780
|
+
projectCount: "{count} projects in workflow"
|
|
3781
|
+
},
|
|
3782
|
+
remove: {
|
|
3783
|
+
description: "Remove project from workflow",
|
|
3784
|
+
removed: '"{project}" removed from "{workflow}"',
|
|
3785
|
+
projectsRemaining: "{count} projects remaining"
|
|
3786
|
+
},
|
|
3787
|
+
show: {
|
|
3788
|
+
description: "Show workflow details",
|
|
3789
|
+
launchOrder: "Launch Order",
|
|
3790
|
+
projects: "Projects",
|
|
3791
|
+
created: "Created",
|
|
3792
|
+
modified: "Modified",
|
|
3793
|
+
projectsLabel: "Projects:",
|
|
3794
|
+
noProjects: "No projects in this workflow.",
|
|
3795
|
+
addHint: 'Add with: shiva workflow add "{name}" ./project-path'
|
|
3796
|
+
},
|
|
3797
|
+
start: {
|
|
3798
|
+
description: "Start all projects in a workflow",
|
|
3799
|
+
newOption: "New sessions instead of resume",
|
|
3800
|
+
terminalOption: "Terminal type (auto, gnome, konsole, tmux)",
|
|
3801
|
+
noProjects: 'Workflow "{name}" has no projects.',
|
|
3802
|
+
preparing: "Preparing projects...",
|
|
3803
|
+
noValidProjects: "No valid projects found.",
|
|
3804
|
+
terminal: "Terminal",
|
|
3805
|
+
projects: "Projects",
|
|
3806
|
+
new: "new",
|
|
3807
|
+
resume: "resume",
|
|
3808
|
+
starting: "Starting projects..."
|
|
3809
|
+
},
|
|
3810
|
+
push: {
|
|
3811
|
+
description: "Save workflows to cloud",
|
|
3812
|
+
nameOption: "Only a specific workflow",
|
|
3813
|
+
noWorkflows: "No workflows to sync found",
|
|
3814
|
+
syncing: "Syncing workflows...",
|
|
3815
|
+
synced: "{count} workflows saved to cloud",
|
|
3816
|
+
failed: "{count} workflows could not be saved"
|
|
3817
|
+
},
|
|
3818
|
+
pull: {
|
|
3819
|
+
description: "Load workflows from cloud",
|
|
3820
|
+
forceOption: "Overwrite local workflows",
|
|
3821
|
+
jsonOption: "Output as JSON",
|
|
3822
|
+
loading: "Loading workflows from cloud...",
|
|
3823
|
+
noWorkflows: "No workflows in cloud found",
|
|
3824
|
+
uploadHint: "Upload with: shiva workflow push",
|
|
3825
|
+
found: "{count} workflows found in cloud",
|
|
3826
|
+
skipped: "{name} skipped (local exists)",
|
|
3827
|
+
imported: "{name} imported",
|
|
3828
|
+
importedCount: "{count} workflows imported",
|
|
3829
|
+
skippedCount: "{count} skipped",
|
|
3830
|
+
loadError: "Error loading"
|
|
3831
|
+
},
|
|
3832
|
+
sync: {
|
|
3833
|
+
description: "Sync workflows with cloud",
|
|
3834
|
+
syncing: "Syncing workflows...",
|
|
3835
|
+
synced: "Workflows synced",
|
|
3836
|
+
localToCloud: "{count} local workflows -> Cloud",
|
|
3837
|
+
cloudToLocal: "{count} new workflows <- Cloud",
|
|
3838
|
+
total: "{count} workflows total"
|
|
3839
|
+
},
|
|
3840
|
+
cloudDelete: {
|
|
3841
|
+
description: "Delete workflow from cloud",
|
|
3842
|
+
deleted: 'Workflow "{name}" deleted from cloud',
|
|
3843
|
+
error: "Error deleting"
|
|
3844
|
+
}
|
|
3838
3845
|
},
|
|
3839
3846
|
context: {
|
|
3840
3847
|
description: "Show context",
|
|
3841
3848
|
header: "SHIVA Code - Context",
|
|
3842
|
-
noContext: "No context found"
|
|
3849
|
+
noContext: "No context found",
|
|
3850
|
+
collectingContext: "Collecting context...",
|
|
3851
|
+
projectLabel: "Project:",
|
|
3852
|
+
pathLabel: "Path:",
|
|
3853
|
+
claudeMdLabel: "CLAUDE.md",
|
|
3854
|
+
claudeMdPresent: "Present ({lines} lines, {size})"
|
|
3843
3855
|
},
|
|
3844
3856
|
tags: {
|
|
3845
3857
|
description: "Manage session tags",
|
|
3846
3858
|
header: "SHIVA Code - Tags",
|
|
3847
|
-
noTags: "No tags found"
|
|
3859
|
+
noTags: "No tags found",
|
|
3860
|
+
addHint: "Add tag: shiva tags add <session-id> <tag>"
|
|
3848
3861
|
},
|
|
3849
3862
|
export: {
|
|
3850
3863
|
description: "Export sessions",
|
|
@@ -4718,7 +4731,8 @@ var fr_default = {
|
|
|
4718
4731
|
noResults: "Aucun resultat trouve",
|
|
4719
4732
|
enterQuery: "Entrez le terme de recherche:",
|
|
4720
4733
|
searching: "Recherche...",
|
|
4721
|
-
resultsFound: "{count} resultat(s) trouve(s)"
|
|
4734
|
+
resultsFound: "{count} resultat(s) trouve(s)",
|
|
4735
|
+
inProjects: "dans {count} projets"
|
|
4722
4736
|
},
|
|
4723
4737
|
forget: {
|
|
4724
4738
|
description: "Supprimer les memoires (RGPD)",
|
|
@@ -4726,7 +4740,10 @@ var fr_default = {
|
|
|
4726
4740
|
warning: "ATTENTION: Supprimer toutes les memoires",
|
|
4727
4741
|
confirmDelete: "Vraiment supprimer les memoires?",
|
|
4728
4742
|
deleted: "Memoires supprimees",
|
|
4729
|
-
selectMemories: "Selectionnez les memoires a supprimer:"
|
|
4743
|
+
selectMemories: "Selectionnez les memoires a supprimer:",
|
|
4744
|
+
loadingMemories: "Chargement des memoires...",
|
|
4745
|
+
projectLabel: "Projet:",
|
|
4746
|
+
pathLabel: "Chemin:"
|
|
4730
4747
|
},
|
|
4731
4748
|
sessions: {
|
|
4732
4749
|
description: "Lister toutes les sessions Claude Code",
|
|
@@ -5162,6 +5179,7 @@ var fr_default = {
|
|
|
5162
5179
|
started: "Conteneur Docker demarre",
|
|
5163
5180
|
stopped: "Conteneur Docker arrete",
|
|
5164
5181
|
statusDesc: "Verifier la disponibilite de Docker",
|
|
5182
|
+
startDesc: "Demarrer le conteneur Docker",
|
|
5165
5183
|
enableDesc: "Activer le mode Docker",
|
|
5166
5184
|
disableDesc: "Desactiver le mode Docker",
|
|
5167
5185
|
containersDesc: "Afficher les conteneurs SHIVA",
|
|
@@ -5264,61 +5282,6 @@ var fr_default = {
|
|
|
5264
5282
|
unknownError: "Erreur inconnue",
|
|
5265
5283
|
cancelled: "Annule"
|
|
5266
5284
|
},
|
|
5267
|
-
workflow: {
|
|
5268
|
-
description: "Executer des workflows automatises",
|
|
5269
|
-
header: "SHIVA Code - Workflows",
|
|
5270
|
-
listDesc: "Afficher les workflows disponibles",
|
|
5271
|
-
runDesc: "Executer un workflow",
|
|
5272
|
-
createDesc: "Creer un nouveau workflow",
|
|
5273
|
-
deleteDesc: "Supprimer un workflow",
|
|
5274
|
-
workflowsTitle: "SHIVA Code - Workflows",
|
|
5275
|
-
noWorkflows: "Aucun workflow defini",
|
|
5276
|
-
createHint: "Creer: shiva workflow create <nom>",
|
|
5277
|
-
runHint: "Executer: shiva workflow run <nom>",
|
|
5278
|
-
builtIn: "Integre:",
|
|
5279
|
-
custom: "Personnalise:",
|
|
5280
|
-
workflowNotFound: "Workflow non trouve: {name}",
|
|
5281
|
-
availableHint: "Workflows disponibles: shiva workflow list",
|
|
5282
|
-
workflowLabel: "Workflow: {name}",
|
|
5283
|
-
dryRunMode: "Mode dry-run - aucune action ne sera executee",
|
|
5284
|
-
wouldExecute: "Executerait: {type}",
|
|
5285
|
-
workflowComplete: "Workflow termine",
|
|
5286
|
-
executing: "Execution...",
|
|
5287
|
-
descriptionPrompt: "Description:",
|
|
5288
|
-
stepTypePrompt: "Type d'etape:",
|
|
5289
|
-
stepNamePrompt: "Nom de l'etape:",
|
|
5290
|
-
addMoreStep: "Ajouter une autre etape?",
|
|
5291
|
-
workflowCreated: 'Workflow "{name}" cree',
|
|
5292
|
-
cannotDeleteBuiltin: "Les workflows integres ne peuvent pas etre supprimes",
|
|
5293
|
-
confirmDeleteWorkflow: 'Vraiment supprimer le workflow "{name}"?',
|
|
5294
|
-
workflowDeleted: 'Workflow "{name}" supprime',
|
|
5295
|
-
stepChoiceIssues: "Afficher les issues",
|
|
5296
|
-
stepChoicePRs: "Afficher les PRs",
|
|
5297
|
-
stepChoicePackage: "Demarrer un package",
|
|
5298
|
-
stepChoiceSync: "Executer sync",
|
|
5299
|
-
githubNotAvailable: "GitHub non disponible",
|
|
5300
|
-
noOpenIssues: "Aucune issue ouverte",
|
|
5301
|
-
noOpenPRs: "Aucune PR ouverte",
|
|
5302
|
-
noPackageSpecified: "Aucun package specifie",
|
|
5303
|
-
packageNotFound: 'Package "{name}" non trouve',
|
|
5304
|
-
startingPackage: 'Demarrage du package "{name}"...',
|
|
5305
|
-
notAuthenticated: "Non authentifie",
|
|
5306
|
-
syncSkipped: "Sync ignore (utiliser shiva sync --all)",
|
|
5307
|
-
unknownStepType: "Type d'etape inconnu: {type}",
|
|
5308
|
-
stepError: "Erreur: {error}",
|
|
5309
|
-
openIssues: "{project}: {count} issues ouvertes",
|
|
5310
|
-
openPRs: "{project}: {count} PRs ouvertes",
|
|
5311
|
-
morningRoutineName: "Routine du matin",
|
|
5312
|
-
morningRoutineDesc: "Debut de journee: verifier issues, demarrer projets principaux",
|
|
5313
|
-
reviewName: "Revue de code",
|
|
5314
|
-
reviewDesc: "Passer en revue PRs et issues ouvertes",
|
|
5315
|
-
checkIssues: "Verifier issues",
|
|
5316
|
-
checkPRs: "Verifier PRs",
|
|
5317
|
-
openPRsStep: "PRs ouvertes",
|
|
5318
|
-
openIssuesStep: "Issues ouvertes",
|
|
5319
|
-
dryRunOption: "Afficher uniquement ce qui serait execute",
|
|
5320
|
-
cancelled: "Annule"
|
|
5321
|
-
},
|
|
5322
5285
|
hook: {
|
|
5323
5286
|
description: "Gerer l'integration des hooks Claude Code",
|
|
5324
5287
|
header: "SHIVA Code - Hooks",
|
|
@@ -5391,42 +5354,123 @@ var fr_default = {
|
|
|
5391
5354
|
}
|
|
5392
5355
|
},
|
|
5393
5356
|
package: {
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5357
|
+
deprecatedDescription: "[Obsolete] Utilisez 'shiva workflow' a la place",
|
|
5358
|
+
deprecatedWarning: "'shiva package' est obsolete et sera supprime dans une future version.",
|
|
5359
|
+
useWorkflowInstead: "Utilisez 'shiva workflow' a la place.",
|
|
5360
|
+
hint: "Astuce: Utilisez 'shiva workflow' au lieu de 'shiva package'"
|
|
5361
|
+
},
|
|
5362
|
+
workflow: {
|
|
5363
|
+
description: "Gerer les workflows de projets",
|
|
5364
|
+
notFound: "Workflow non trouve: {name}",
|
|
5365
|
+
list: {
|
|
5366
|
+
description: "Lister tous les workflows",
|
|
5367
|
+
jsonOption: "Sortie en JSON"
|
|
5368
|
+
},
|
|
5397
5369
|
listFunc: {
|
|
5398
|
-
header: "SHIVA Code -
|
|
5399
|
-
|
|
5400
|
-
createHint: 'Creer un
|
|
5370
|
+
header: "SHIVA Code - Workflows",
|
|
5371
|
+
noWorkflows: "Aucun workflow disponible.",
|
|
5372
|
+
createHint: 'Creer un workflow: shiva workflow create "Nom"',
|
|
5401
5373
|
projectCount: "{count} projets",
|
|
5402
5374
|
andMore: "...et {count} de plus",
|
|
5403
|
-
total: "Total: {
|
|
5375
|
+
total: "Total: {workflows} workflows, {projects} projets"
|
|
5404
5376
|
},
|
|
5405
|
-
|
|
5406
|
-
|
|
5407
|
-
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5415
|
-
|
|
5416
|
-
|
|
5417
|
-
|
|
5418
|
-
|
|
5419
|
-
|
|
5377
|
+
create: {
|
|
5378
|
+
description: "Creer un nouveau workflow",
|
|
5379
|
+
descriptionOption: "Description",
|
|
5380
|
+
sequentialOption: "Demarrer les projets sequentiellement",
|
|
5381
|
+
created: 'Workflow "{name}" cree',
|
|
5382
|
+
addProjectsHint: "Ajouter un projet:"
|
|
5383
|
+
},
|
|
5384
|
+
delete: {
|
|
5385
|
+
description: "Supprimer le workflow",
|
|
5386
|
+
forceOption: "Supprimer sans confirmation",
|
|
5387
|
+
confirmMessage: 'Vraiment supprimer le workflow "{name}" ({count} projets)?',
|
|
5388
|
+
deleted: 'Workflow "{name}" supprime'
|
|
5389
|
+
},
|
|
5390
|
+
add: {
|
|
5391
|
+
description: "Ajouter un projet au workflow",
|
|
5392
|
+
added: '"{project}" ajoute a "{workflow}"',
|
|
5393
|
+
projectCount: "{count} projets dans le workflow"
|
|
5394
|
+
},
|
|
5395
|
+
remove: {
|
|
5396
|
+
description: "Supprimer un projet du workflow",
|
|
5397
|
+
removed: '"{project}" supprime de "{workflow}"',
|
|
5398
|
+
projectsRemaining: "{count} projets restants"
|
|
5399
|
+
},
|
|
5400
|
+
show: {
|
|
5401
|
+
description: "Afficher les details du workflow",
|
|
5402
|
+
launchOrder: "Ordre de lancement",
|
|
5403
|
+
projects: "Projets",
|
|
5404
|
+
created: "Cree",
|
|
5405
|
+
modified: "Modifie",
|
|
5406
|
+
projectsLabel: "Projets:",
|
|
5407
|
+
noProjects: "Aucun projet dans ce workflow.",
|
|
5408
|
+
addHint: 'Ajouter avec: shiva workflow add "{name}" ./chemin-projet'
|
|
5409
|
+
},
|
|
5410
|
+
start: {
|
|
5411
|
+
description: "Demarrer tous les projets d'un workflow",
|
|
5412
|
+
newOption: "Nouvelles sessions au lieu de reprendre",
|
|
5413
|
+
terminalOption: "Type de terminal (auto, gnome, konsole, tmux)",
|
|
5414
|
+
noProjects: `Le workflow "{name}" n'a aucun projet.`,
|
|
5415
|
+
preparing: "Preparation des projets...",
|
|
5416
|
+
noValidProjects: "Aucun projet valide trouve.",
|
|
5417
|
+
terminal: "Terminal",
|
|
5418
|
+
projects: "Projets",
|
|
5419
|
+
new: "nouveau",
|
|
5420
|
+
resume: "reprendre",
|
|
5421
|
+
starting: "Demarrage des projets..."
|
|
5422
|
+
},
|
|
5423
|
+
push: {
|
|
5424
|
+
description: "Sauvegarder les workflows dans le cloud",
|
|
5425
|
+
nameOption: "Seulement un workflow specifique",
|
|
5426
|
+
noWorkflows: "Aucun workflow a synchroniser trouve",
|
|
5427
|
+
syncing: "Synchronisation des workflows...",
|
|
5428
|
+
synced: "{count} workflows sauvegardes dans le cloud",
|
|
5429
|
+
failed: "{count} workflows n'ont pas pu etre sauvegardes"
|
|
5430
|
+
},
|
|
5431
|
+
pull: {
|
|
5432
|
+
description: "Charger les workflows depuis le cloud",
|
|
5433
|
+
forceOption: "Ecraser les workflows locaux",
|
|
5434
|
+
jsonOption: "Sortie en JSON",
|
|
5435
|
+
loading: "Chargement des workflows depuis le cloud...",
|
|
5436
|
+
noWorkflows: "Aucun workflow trouve dans le cloud",
|
|
5437
|
+
uploadHint: "Telecharger avec: shiva workflow push",
|
|
5438
|
+
found: "{count} workflows trouves dans le cloud",
|
|
5439
|
+
skipped: "{name} ignore (existe localement)",
|
|
5440
|
+
imported: "{name} importe",
|
|
5441
|
+
importedCount: "{count} workflows importes",
|
|
5442
|
+
skippedCount: "{count} ignores",
|
|
5443
|
+
loadError: "Erreur de chargement"
|
|
5444
|
+
},
|
|
5445
|
+
sync: {
|
|
5446
|
+
description: "Synchroniser les workflows avec le cloud",
|
|
5447
|
+
syncing: "Synchronisation des workflows...",
|
|
5448
|
+
synced: "Workflows synchronises",
|
|
5449
|
+
localToCloud: "{count} workflows locaux -> Cloud",
|
|
5450
|
+
cloudToLocal: "{count} nouveaux workflows <- Cloud",
|
|
5451
|
+
total: "{count} workflows au total"
|
|
5452
|
+
},
|
|
5453
|
+
cloudDelete: {
|
|
5454
|
+
description: "Supprimer le workflow du cloud",
|
|
5455
|
+
deleted: 'Workflow "{name}" supprime du cloud',
|
|
5456
|
+
error: "Erreur de suppression"
|
|
5457
|
+
}
|
|
5420
5458
|
},
|
|
5421
5459
|
context: {
|
|
5422
5460
|
description: "Afficher le contexte",
|
|
5423
5461
|
header: "SHIVA Code - Contexte",
|
|
5424
|
-
noContext: "Aucun contexte trouve"
|
|
5462
|
+
noContext: "Aucun contexte trouve",
|
|
5463
|
+
collectingContext: "Collecte du contexte...",
|
|
5464
|
+
projectLabel: "Projet:",
|
|
5465
|
+
pathLabel: "Chemin:",
|
|
5466
|
+
claudeMdLabel: "CLAUDE.md",
|
|
5467
|
+
claudeMdPresent: "Present ({lines} lignes, {size})"
|
|
5425
5468
|
},
|
|
5426
5469
|
tags: {
|
|
5427
5470
|
description: "Gerer les tags de session",
|
|
5428
5471
|
header: "SHIVA Code - Tags",
|
|
5429
|
-
noTags: "Aucun tag trouve"
|
|
5472
|
+
noTags: "Aucun tag trouve",
|
|
5473
|
+
addHint: "Ajouter tag: shiva tags add <session-id> <tag>"
|
|
5430
5474
|
},
|
|
5431
5475
|
export: {
|
|
5432
5476
|
description: "Exporter les sessions",
|
|
@@ -7004,6 +7048,7 @@ var es_default = {
|
|
|
7004
7048
|
started: "Contenedor Docker iniciado",
|
|
7005
7049
|
stopped: "Contenedor Docker detenido",
|
|
7006
7050
|
statusDesc: "Verificar disponibilidad de Docker",
|
|
7051
|
+
startDesc: "Iniciar contenedor Docker",
|
|
7007
7052
|
enableDesc: "Activar modo Docker",
|
|
7008
7053
|
disableDesc: "Desactivar modo Docker",
|
|
7009
7054
|
containersDesc: "Mostrar contenedores SHIVA",
|
|
@@ -7106,61 +7151,6 @@ var es_default = {
|
|
|
7106
7151
|
unknownError: "Error desconocido",
|
|
7107
7152
|
cancelled: "Cancelado"
|
|
7108
7153
|
},
|
|
7109
|
-
workflow: {
|
|
7110
|
-
description: "Ejecutar workflows automatizados",
|
|
7111
|
-
header: "SHIVA Code - Workflows",
|
|
7112
|
-
listDesc: "Mostrar workflows disponibles",
|
|
7113
|
-
runDesc: "Ejecutar workflow",
|
|
7114
|
-
createDesc: "Crear nuevo workflow",
|
|
7115
|
-
deleteDesc: "Eliminar workflow",
|
|
7116
|
-
workflowsTitle: "SHIVA Code - Workflows",
|
|
7117
|
-
noWorkflows: "No hay workflows definidos",
|
|
7118
|
-
createHint: "Crear: shiva workflow create <nombre>",
|
|
7119
|
-
runHint: "Ejecutar: shiva workflow run <nombre>",
|
|
7120
|
-
builtIn: "Integrado:",
|
|
7121
|
-
custom: "Personalizado:",
|
|
7122
|
-
workflowNotFound: "Workflow no encontrado: {name}",
|
|
7123
|
-
availableHint: "Workflows disponibles: shiva workflow list",
|
|
7124
|
-
workflowLabel: "Workflow: {name}",
|
|
7125
|
-
dryRunMode: "Modo dry-run - no se ejecutaran acciones",
|
|
7126
|
-
wouldExecute: "Ejecutaria: {type}",
|
|
7127
|
-
workflowComplete: "Workflow completado",
|
|
7128
|
-
executing: "Ejecutando...",
|
|
7129
|
-
descriptionPrompt: "Descripcion:",
|
|
7130
|
-
stepTypePrompt: "Tipo de paso:",
|
|
7131
|
-
stepNamePrompt: "Nombre del paso:",
|
|
7132
|
-
addMoreStep: "Agregar otro paso?",
|
|
7133
|
-
workflowCreated: 'Workflow "{name}" creado',
|
|
7134
|
-
cannotDeleteBuiltin: "Los workflows integrados no pueden eliminarse",
|
|
7135
|
-
confirmDeleteWorkflow: 'Realmente eliminar workflow "{name}"?',
|
|
7136
|
-
workflowDeleted: 'Workflow "{name}" eliminado',
|
|
7137
|
-
stepChoiceIssues: "Mostrar issues",
|
|
7138
|
-
stepChoicePRs: "Mostrar PRs",
|
|
7139
|
-
stepChoicePackage: "Iniciar package",
|
|
7140
|
-
stepChoiceSync: "Ejecutar sync",
|
|
7141
|
-
githubNotAvailable: "GitHub no disponible",
|
|
7142
|
-
noOpenIssues: "No hay issues abiertas",
|
|
7143
|
-
noOpenPRs: "No hay PRs abiertos",
|
|
7144
|
-
noPackageSpecified: "No se especifico package",
|
|
7145
|
-
packageNotFound: 'Package "{name}" no encontrado',
|
|
7146
|
-
startingPackage: 'Iniciando package "{name}"...',
|
|
7147
|
-
notAuthenticated: "No autenticado",
|
|
7148
|
-
syncSkipped: "Sync omitido (usar shiva sync --all)",
|
|
7149
|
-
unknownStepType: "Tipo de paso desconocido: {type}",
|
|
7150
|
-
stepError: "Error: {error}",
|
|
7151
|
-
openIssues: "{project}: {count} issues abiertas",
|
|
7152
|
-
openPRs: "{project}: {count} PRs abiertos",
|
|
7153
|
-
morningRoutineName: "Rutina Matutina",
|
|
7154
|
-
morningRoutineDesc: "Inicio del dia: revisar issues, iniciar proyectos principales",
|
|
7155
|
-
reviewName: "Revision de Codigo",
|
|
7156
|
-
reviewDesc: "Revisar PRs e issues abiertos",
|
|
7157
|
-
checkIssues: "Revisar issues",
|
|
7158
|
-
checkPRs: "Revisar PRs",
|
|
7159
|
-
openPRsStep: "PRs abiertos",
|
|
7160
|
-
openIssuesStep: "Issues abiertas",
|
|
7161
|
-
dryRunOption: "Solo mostrar lo que se ejecutaria",
|
|
7162
|
-
cancelled: "Cancelado"
|
|
7163
|
-
},
|
|
7164
7154
|
hook: {
|
|
7165
7155
|
description: "Gestionar integracion de hooks Claude Code",
|
|
7166
7156
|
header: "SHIVA Code - Hooks",
|
|
@@ -7233,32 +7223,107 @@ var es_default = {
|
|
|
7233
7223
|
}
|
|
7234
7224
|
},
|
|
7235
7225
|
package: {
|
|
7236
|
-
|
|
7237
|
-
|
|
7238
|
-
|
|
7226
|
+
deprecatedDescription: "[Obsoleto] Usa 'shiva workflow' en su lugar",
|
|
7227
|
+
deprecatedWarning: "'shiva package' esta obsoleto y sera eliminado en una version futura.",
|
|
7228
|
+
useWorkflowInstead: "Usa 'shiva workflow' en su lugar.",
|
|
7229
|
+
hint: "Consejo: Usa 'shiva workflow' en lugar de 'shiva package'"
|
|
7230
|
+
},
|
|
7231
|
+
workflow: {
|
|
7232
|
+
description: "Gestionar workflows de proyectos",
|
|
7233
|
+
notFound: "Workflow no encontrado: {name}",
|
|
7234
|
+
list: {
|
|
7235
|
+
description: "Listar todos los workflows",
|
|
7236
|
+
jsonOption: "Salida como JSON"
|
|
7237
|
+
},
|
|
7239
7238
|
listFunc: {
|
|
7240
|
-
header: "SHIVA Code -
|
|
7241
|
-
|
|
7242
|
-
createHint: 'Crear
|
|
7239
|
+
header: "SHIVA Code - Workflows",
|
|
7240
|
+
noWorkflows: "No hay workflows disponibles.",
|
|
7241
|
+
createHint: 'Crear workflow: shiva workflow create "Nombre"',
|
|
7243
7242
|
projectCount: "{count} proyectos",
|
|
7244
7243
|
andMore: "...y {count} mas",
|
|
7245
|
-
total: "Total: {
|
|
7244
|
+
total: "Total: {workflows} workflows, {projects} proyectos"
|
|
7246
7245
|
},
|
|
7247
|
-
|
|
7248
|
-
|
|
7249
|
-
|
|
7250
|
-
|
|
7251
|
-
|
|
7252
|
-
|
|
7253
|
-
|
|
7254
|
-
|
|
7255
|
-
|
|
7256
|
-
|
|
7257
|
-
|
|
7258
|
-
|
|
7259
|
-
|
|
7260
|
-
|
|
7261
|
-
|
|
7246
|
+
create: {
|
|
7247
|
+
description: "Crear nuevo workflow",
|
|
7248
|
+
descriptionOption: "Descripcion",
|
|
7249
|
+
sequentialOption: "Iniciar proyectos secuencialmente",
|
|
7250
|
+
created: 'Workflow "{name}" creado',
|
|
7251
|
+
addProjectsHint: "Agregar proyecto:"
|
|
7252
|
+
},
|
|
7253
|
+
delete: {
|
|
7254
|
+
description: "Eliminar workflow",
|
|
7255
|
+
forceOption: "Eliminar sin confirmacion",
|
|
7256
|
+
confirmMessage: 'Realmente eliminar workflow "{name}" ({count} proyectos)?',
|
|
7257
|
+
deleted: 'Workflow "{name}" eliminado'
|
|
7258
|
+
},
|
|
7259
|
+
add: {
|
|
7260
|
+
description: "Agregar proyecto al workflow",
|
|
7261
|
+
added: '"{project}" agregado a "{workflow}"',
|
|
7262
|
+
projectCount: "{count} proyectos en workflow"
|
|
7263
|
+
},
|
|
7264
|
+
remove: {
|
|
7265
|
+
description: "Eliminar proyecto del workflow",
|
|
7266
|
+
removed: '"{project}" eliminado de "{workflow}"',
|
|
7267
|
+
projectsRemaining: "{count} proyectos restantes"
|
|
7268
|
+
},
|
|
7269
|
+
show: {
|
|
7270
|
+
description: "Mostrar detalles del workflow",
|
|
7271
|
+
launchOrder: "Orden de inicio",
|
|
7272
|
+
projects: "Proyectos",
|
|
7273
|
+
created: "Creado",
|
|
7274
|
+
modified: "Modificado",
|
|
7275
|
+
projectsLabel: "Proyectos:",
|
|
7276
|
+
noProjects: "No hay proyectos en este workflow.",
|
|
7277
|
+
addHint: 'Agregar con: shiva workflow add "{name}" ./ruta-proyecto'
|
|
7278
|
+
},
|
|
7279
|
+
start: {
|
|
7280
|
+
description: "Iniciar todos los proyectos de un workflow",
|
|
7281
|
+
newOption: "Nuevas sesiones en lugar de reanudar",
|
|
7282
|
+
terminalOption: "Tipo de terminal (auto, gnome, konsole, tmux)",
|
|
7283
|
+
noProjects: 'El workflow "{name}" no tiene proyectos.',
|
|
7284
|
+
preparing: "Preparando proyectos...",
|
|
7285
|
+
noValidProjects: "No se encontraron proyectos validos.",
|
|
7286
|
+
terminal: "Terminal",
|
|
7287
|
+
projects: "Proyectos",
|
|
7288
|
+
new: "nuevo",
|
|
7289
|
+
resume: "reanudar",
|
|
7290
|
+
starting: "Iniciando proyectos..."
|
|
7291
|
+
},
|
|
7292
|
+
push: {
|
|
7293
|
+
description: "Guardar workflows en la nube",
|
|
7294
|
+
nameOption: "Solo un workflow especifico",
|
|
7295
|
+
noWorkflows: "No se encontraron workflows para sincronizar",
|
|
7296
|
+
syncing: "Sincronizando workflows...",
|
|
7297
|
+
synced: "{count} workflows guardados en la nube",
|
|
7298
|
+
failed: "{count} workflows no pudieron guardarse"
|
|
7299
|
+
},
|
|
7300
|
+
pull: {
|
|
7301
|
+
description: "Cargar workflows desde la nube",
|
|
7302
|
+
forceOption: "Sobrescribir workflows locales",
|
|
7303
|
+
jsonOption: "Salida como JSON",
|
|
7304
|
+
loading: "Cargando workflows desde la nube...",
|
|
7305
|
+
noWorkflows: "No se encontraron workflows en la nube",
|
|
7306
|
+
uploadHint: "Subir con: shiva workflow push",
|
|
7307
|
+
found: "{count} workflows encontrados en la nube",
|
|
7308
|
+
skipped: "{name} omitido (existe localmente)",
|
|
7309
|
+
imported: "{name} importado",
|
|
7310
|
+
importedCount: "{count} workflows importados",
|
|
7311
|
+
skippedCount: "{count} omitidos",
|
|
7312
|
+
loadError: "Error al cargar"
|
|
7313
|
+
},
|
|
7314
|
+
sync: {
|
|
7315
|
+
description: "Sincronizar workflows con la nube",
|
|
7316
|
+
syncing: "Sincronizando workflows...",
|
|
7317
|
+
synced: "Workflows sincronizados",
|
|
7318
|
+
localToCloud: "{count} workflows locales -> Nube",
|
|
7319
|
+
cloudToLocal: "{count} workflows nuevos <- Nube",
|
|
7320
|
+
total: "{count} workflows en total"
|
|
7321
|
+
},
|
|
7322
|
+
cloudDelete: {
|
|
7323
|
+
description: "Eliminar workflow de la nube",
|
|
7324
|
+
deleted: 'Workflow "{name}" eliminado de la nube',
|
|
7325
|
+
error: "Error al eliminar"
|
|
7326
|
+
}
|
|
7262
7327
|
},
|
|
7263
7328
|
context: {
|
|
7264
7329
|
description: "Mostrar lo que se inyectaria en Claude",
|