/ .chainlit / translations / en-US.json
en-US.json
  1  {
  2    "common": {
  3      "actions": {
  4        "cancel": "Cancel",
  5        "confirm": "Confirm",
  6        "continue": "Continue",
  7        "goBack": "Go Back",
  8        "reset": "Reset",
  9        "submit": "Submit"
 10      },
 11      "status": {
 12        "loading": "Loading...",
 13        "error": {
 14          "default": "An error occurred",
 15          "serverConnection": "Could not reach the server"
 16        }
 17      }
 18    },
 19    "auth": {
 20      "login": {
 21        "title": "Login to access the app",
 22        "form": {
 23          "email": {
 24            "label": "Email address",
 25            "required": "email is a required field",
 26            "placeholder": "me@example.com"
 27          },
 28          "password": {
 29            "label": "Password",
 30            "required": "password is a required field"
 31          },
 32          "actions": {
 33            "signin": "Sign In"
 34          },
 35          "alternativeText": {
 36            "or": "OR"
 37          }
 38        },
 39        "errors": {
 40          "default": "Unable to sign in",
 41          "signin": "Try signing in with a different account",
 42          "oauthSignin": "Try signing in with a different account",
 43          "redirectUriMismatch": "The redirect URI is not matching the oauth app configuration",
 44          "oauthCallback": "Try signing in with a different account",
 45          "oauthCreateAccount": "Try signing in with a different account",
 46          "emailCreateAccount": "Try signing in with a different account",
 47          "callback": "Try signing in with a different account",
 48          "oauthAccountNotLinked": "To confirm your identity, sign in with the same account you used originally",
 49          "emailSignin": "The e-mail could not be sent",
 50          "emailVerify": "Please verify your email, a new email has been sent",
 51          "credentialsSignin": "Sign in failed. Check the details you provided are correct",
 52          "sessionRequired": "Please sign in to access this page"
 53        }
 54      },
 55      "provider": {
 56        "continue": "Continue with {{provider}}"
 57      }
 58    },
 59    "chat": {
 60      "input": {
 61        "placeholder": "Type your message here...",
 62        "actions": {
 63          "send": "Send message",
 64          "stop": "Stop Task",
 65          "attachFiles": "Attach files"
 66        }
 67      },
 68      "commands": {
 69        "button": "Tools",
 70        "changeTool": "Change Tool",
 71        "availableTools": "Available Tools"
 72      },
 73      "speech": {
 74        "start": "Start recording",
 75        "stop": "Stop recording",
 76        "connecting": "Connecting"
 77      },
 78      "fileUpload": {
 79        "dragDrop": "Drag and drop files here",
 80        "browse": "Browse Files",
 81        "sizeLimit": "Limit:",
 82        "errors": {
 83          "failed": "Failed to upload",
 84          "cancelled": "Cancelled upload of"
 85        },
 86        "actions": {
 87          "cancelUpload": "Cancel upload",
 88          "removeAttachment": "Remove attachment"
 89        }
 90      },
 91      "messages": {
 92        "status": {
 93          "using": "Using",
 94          "used": "Used"
 95        },
 96        "actions": {
 97          "copy": {
 98            "button": "Copy to clipboard",
 99            "success": "Copied!"
100          }
101        },
102        "feedback": {
103          "positive": "Helpful",
104          "negative": "Not helpful",
105          "edit": "Edit feedback",
106          "dialog": {
107            "title": "Add a comment",
108            "submit": "Submit feedback",
109            "yourFeedback": "Your feedback..."
110          },
111          "status": {
112            "updating": "Updating",
113            "updated": "Feedback updated"
114          }
115        }
116      },
117      "history": {
118        "title": "Last Inputs",
119        "empty": "Such empty...",
120        "show": "Show history"
121      },
122      "settings": {
123        "title": "Settings panel",
124        "customize": "Customize your chat settings here"
125      },
126      "watermark": "LLMs can make mistakes. Check important info."
127    },
128    "threadHistory": {
129      "sidebar": {
130        "title": "Past Chats",
131        "filters": {
132          "search": "Search",
133          "placeholder": "Search conversations..."
134        },
135        "timeframes": {
136          "today": "Today",
137          "yesterday": "Yesterday",
138          "previous7days": "Previous 7 days",
139          "previous30days": "Previous 30 days"
140        },
141        "empty": "No threads found",
142        "actions": {
143          "close": "Close sidebar",
144          "open": "Open sidebar"
145        }
146      },
147      "thread": {
148        "untitled": "Untitled Conversation",
149        "menu": {
150            "rename": "Rename",
151            "share": "Share",
152            "delete": "Delete"
153          },
154        "actions": {
155          "share": {
156            "title": "Share link to chat",
157            "button": "Share",
158            "status": {
159              "copied": "Link copied",
160              "created": "Share link created!",
161              "unshared": "Sharing disabled for this thread"
162            },
163            "error": {
164              "create": "Failed to create share link",
165              "unshare": "Failed to unshare thread"
166            }
167          },
168          "delete": {
169            "title": "Confirm deletion",
170            "description": "This will delete the thread as well as its messages and elements. This action cannot be undone",
171            "success": "Chat deleted",
172            "inProgress": "Deleting chat"
173          },
174          "rename": {
175            "title": "Rename Thread",
176            "description": "Enter a new name for this thread",
177            "form": {
178              "name": {
179                "label": "Name",
180                "placeholder": "Enter new name"
181              }
182            },
183            "success": "Thread renamed!",
184            "inProgress": "Renaming thread"
185          }
186        }
187      }
188    },
189    "navigation": {
190      "header": {
191        "chat": "Chat",
192        "readme": "Readme",
193        "theme": {
194          "light": "Light Theme",
195          "dark": "Dark Theme",
196          "system": "Follow System"
197        }
198      },
199      "newChat": {
200        "button": "New Chat",
201        "dialog": {
202          "title": "Create New Chat",
203          "description": "This will clear your current chat history. Are you sure you want to continue?",
204          "tooltip": "New Chat"
205        }
206      },
207      "user": {
208        "menu": {
209          "settings": "Settings",
210          "settingsKey": "S",
211          "apiKeys": "API Keys",
212          "logout": "Logout"
213        }
214      }
215    },
216    "apiKeys": {
217      "title": "Required API Keys",
218      "description": "To use this app, the following API keys are required. The keys are stored on your device's local storage.",
219      "success": {
220        "saved": "Saved successfully"
221      }
222    },
223    "alerts": {
224      "info": "Info",
225      "note": "Note",
226      "tip": "Tip",
227      "important": "Important",
228      "warning": "Warning",
229      "caution": "Caution",
230      "debug": "Debug",
231      "example": "Example",
232      "success": "Success",
233      "help": "Help",
234      "idea": "Idea",
235      "pending": "Pending",
236      "security": "Security",
237      "beta": "Beta",
238      "best-practice": "Best Practice"
239    },
240    "components": {
241      "MultiSelectInput": {
242        "placeholder": "Select..."
243      }
244    }
245  }