Improve strings

This commit is contained in:
Enrico Ros
2025-10-24 15:03:55 -07:00
parent ca62bad217
commit 61a5b6d5eb
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -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 &quot;<b>Draw</b>&quot;.*/}
</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.'
/>
)}
+1 -1
View File
@@ -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&apos;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;
}
+1 -1
View File
@@ -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>