mirror of
https://github.com/enricoros/big-AGI.git
synced 2026-05-10 21:50:14 -07:00
Improve strings
This commit is contained in:
@@ -22,7 +22,7 @@ export function ZeroGenerations() {
|
||||
{/*</Typography>*/}
|
||||
<Typography level='title-sm' sx={{ whiteSpace: 'balance' }}>
|
||||
Generate stunning images from text.
|
||||
Simply type in an image, drawing, or photo description, and the AI will bring your vision to life.
|
||||
Enter an image, drawing, or photo description, and the AI will create your vision.
|
||||
{/*To get started enter your prompt and hit "<b>Draw</b>".*/}
|
||||
</Typography>
|
||||
</Card>
|
||||
|
||||
@@ -134,7 +134,7 @@ export function AppChatSettingsAI() {
|
||||
domainId='primaryChat'
|
||||
title={<><EngineeringIcon color='warning' sx={{ fontSize: 'lg', mr: 0.5, mb: 0.25 }} />Last used model</>}
|
||||
description='Chat fallback model'
|
||||
tooltip='The last used chat model, used as default for new conversations. This is a develoment setting used to test out auto-detection of the most fitting initial chat model.'
|
||||
tooltip='The last used chat model, used as default for new conversations. This is a development setting used to test out auto-detection of the most fitting initial chat model.'
|
||||
/>
|
||||
)}
|
||||
|
||||
|
||||
@@ -115,7 +115,7 @@ export class ErrorBoundary extends React.Component<ErrorBoundaryProps, ErrorBoun
|
||||
<div className='vivided'>
|
||||
<h2 className='heading'>Oops, we hit a snag</h2>
|
||||
<div className='message'>
|
||||
<p style={{ fontWeight: 500 }}>Something broke; this shouldn't happen.{outer ? ' Please try reloading Big-AGI.' : ''}</p>
|
||||
<p style={{ fontWeight: 500 }}>An unexpected error occurred.{outer ? ' Please try reloading Big-AGI.' : ''}</p>
|
||||
{outer && (
|
||||
<p style={{ fontWeight: 500 }}>
|
||||
{' '}If the issue persists, please{' '}
|
||||
|
||||
@@ -31,7 +31,7 @@ export async function executeUserInputChecklistInstruction(
|
||||
|
||||
// if no options, there's an error
|
||||
if (options.length < 2) {
|
||||
reject(new Error('Oops! It looks like we had trouble understanding the Model. Could you please try again?'));
|
||||
reject(new Error('Unable to parse model output. Please try again with a different prompt or model.'));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ export function BrowseSettings() {
|
||||
|
||||
<FormControl disabled>
|
||||
<Checkbox size='sm' label='Personas browsing tool' checked={false} onChange={(event) => setEnablePersonaTool(event.target.checked)} />
|
||||
<FormHelperText sx={_styleHelperText}>Coming soon</FormHelperText>
|
||||
<FormHelperText sx={_styleHelperText}>Available in a future release</FormHelperText>
|
||||
{/*<FormHelperText sx={_styleHelperText}>Enable loading URLs by Personas</FormHelperText>*/}
|
||||
</FormControl>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user