Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the messages in the dashboard to avoid misunderstandings #3150

Merged
merged 1 commit into from
May 13, 2023
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
2 changes: 1 addition & 1 deletion website/public/locales/en/dashboard.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"grab_a_task": "Grab a task!",
"grab_a_task": "Help with data collection",
"create": "Create",
"evaluate": "Evaluate",
"label": "Label",
Expand Down
1 change: 1 addition & 0 deletions website/public/locales/en/index.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"blurb": "We believe we can create a revolution.",
"blurb1": "In the same way that Stable Diffusion helped the world make art and images in new ways, we want to improve the world by providing amazing conversational AI.",
"chat_with_our_assistant": "Chat with our assistant",
Copy link
Collaborator

@notmd notmd May 13, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you still the old key try_our_assistant here? nvm

"description": "Conversational AI for everyone. An open source project to create a chat enabled GPT LLM run by LAION and contributors around the world.",
"faq_items": {
"q0": "How far along is this project?",
Expand Down
2 changes: 1 addition & 1 deletion website/public/locales/es/dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"dashboard": "Panel principal",
"evaluate": "Evaluar",
"go": "Ir",
"grab_a_task": "¡Toma una tarea!",
"grab_a_task": "Ayuda con la recolección de datos",
"label": "Etiquetar",
"welcome_message": {
"label": "Bienvenido, {{username}}!",
Expand Down
1 change: 1 addition & 0 deletions website/public/locales/es/index.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"blurb": "Creemos que podemos crear una revolución.",
"blurb1": "De la misma forma que Stable Diffusion ayudó al mundo a crear arte e imágenes de nuevas maneras, queremos mejorar el mundo proporcionando una IA conversacional asombrosa.",
"chat_with_our_assistant": "Chatea con nuestro asistente",
"description": "IA conversacional para todos. Un proyecto de código abierto para crear un GPT LLM preparado para chatear administrado por LAION y colaboradores de todo el mundo.",
"faq_items": {
"q0": "¿Qué tan avanzado está el proyecto?",
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const Dashboard = () => {
<Flex direction="column" gap={4}>
<Heading size="lg">{t("index:try_our_assistant")}</Heading>
<Link href="/chat" aria-label="Chat">
<Button sx={chatButtonStyle}>{t("index:try_our_assistant")}</Button>
<Button sx={chatButtonStyle}>{t("index:chat_with_our_assistant")}</Button>
</Link>
</Flex>
)}
Expand Down