Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions webview-ui/src/components/welcome/RooHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,20 @@ const RooHero = () => {
})

return (
<div
style={{
backgroundColor: "var(--vscode-foreground)",
WebkitMaskImage: `url('${imagesBaseUri}/roo-logo.svg')`,
WebkitMaskRepeat: "no-repeat",
WebkitMaskSize: "contain",
maskImage: `url('${imagesBaseUri}/roo-logo.svg')`,
maskRepeat: "no-repeat",
maskSize: "contain",
}}>
<img src={imagesBaseUri + "/roo-logo.svg"} alt="Roo logo" className="h-8 opacity-0" />
<div className="flex flex-col items-center justify-center pb-4 forced-color-adjust-none">
<div
style={{
backgroundColor: "var(--vscode-foreground)",
WebkitMaskImage: `url('${imagesBaseUri}/roo-logo.svg')`,
WebkitMaskRepeat: "no-repeat",
WebkitMaskSize: "contain",
maskImage: `url('${imagesBaseUri}/roo-logo.svg')`,
maskRepeat: "no-repeat",
maskSize: "contain",
}}
className="mx-auto">
<img src={imagesBaseUri + "/roo-logo.svg"} alt="Roo logo" className="h-8 opacity-0" />
</div>
</div>
)
}
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/en/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "Recent Tasks",
"history": "History",
"exitSelectionMode": "Exit Selection Mode",
"enterSelectionMode": "Enter Selection Mode",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/hi/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "हाल के कार्य",
"history": "इतिहास",
"exitSelectionMode": "चयन मोड से बाहर निकलें",
"enterSelectionMode": "चयन मोड में प्रवेश करें",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/it/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "Attività recenti",
"history": "Cronologia",
"exitSelectionMode": "Esci dalla modalità selezione",
"enterSelectionMode": "Entra in modalità selezione",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/ja/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "最近のタスク",
"history": "履歴",
"exitSelectionMode": "選択モードを終了",
"enterSelectionMode": "選択モードに入る",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/ko/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "최근 작업",
"history": "기록",
"exitSelectionMode": "선택 모드 종료",
"enterSelectionMode": "선택 모드 진입",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/nl/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "Recente taken",
"history": "Geschiedenis",
"exitSelectionMode": "Selectiemodus verlaten",
"enterSelectionMode": "Selectiemodus starten",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/pl/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "Ostatnie zadania",
"history": "Historia",
"exitSelectionMode": "Wyłącz tryb wyboru",
"enterSelectionMode": "Włącz tryb wyboru",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/pt-BR/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "Tarefas recentes",
"history": "Histórico",
"exitSelectionMode": "Sair do modo de seleção",
"enterSelectionMode": "Entrar no modo de seleção",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/ru/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "Недавние задачи",
"history": "История",
"exitSelectionMode": "Выйти из режима выбора",
"enterSelectionMode": "Войти в режим выбора",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/tr/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "Son görevler",
"history": "Geçmiş",
"exitSelectionMode": "Seçim Modundan Çık",
"enterSelectionMode": "Seçim Moduna Gir",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/vi/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "Nhiệm vụ gần đây",
"history": "Lịch sử",
"exitSelectionMode": "Thoát chế độ chọn",
"enterSelectionMode": "Vào chế độ chọn",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/zh-CN/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "最近任务",
"history": "历史记录",
"exitSelectionMode": "退出多选模式",
"enterSelectionMode": "进入多选模式",
Expand Down
1 change: 1 addition & 0 deletions webview-ui/src/i18n/locales/zh-TW/history.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"recentTasks": "最近工作",
"history": "歷史記錄",
"exitSelectionMode": "離開選擇模式",
"enterSelectionMode": "進入選擇模式",
Expand Down
Loading