refactor: text streaming
This commit is contained in:
@@ -84,6 +84,8 @@
|
||||
"@uploadDocsPrompt": {"description": "Prompt encouraging users to upload documents."},
|
||||
"uploadFirstFile": "Upload your first file",
|
||||
"@uploadFirstFile": {"description": "CTA to add the first file."},
|
||||
"attachments": "Attachments",
|
||||
"@attachments": {"description": "Header above list of attached files in compose area."},
|
||||
"knowledgeBaseEmpty": "Knowledge base is empty",
|
||||
"@knowledgeBaseEmpty": {"description": "Empty state title for the knowledge base section."},
|
||||
"createCollectionsPrompt": "Create collections of related documents for easy reference",
|
||||
|
||||
@@ -306,6 +306,12 @@ abstract class AppLocalizations {
|
||||
/// **'Upload your first file'**
|
||||
String get uploadFirstFile;
|
||||
|
||||
/// Header above list of attached files in compose area.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Attachments'**
|
||||
String get attachments;
|
||||
|
||||
/// Empty state title for the knowledge base section.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
|
||||
@@ -124,6 +124,9 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
@override
|
||||
String get uploadFirstFile => 'Erste Datei hochladen';
|
||||
|
||||
@override
|
||||
String get attachments => 'Attachments';
|
||||
|
||||
@override
|
||||
String get knowledgeBaseEmpty => 'Wissensdatenbank ist leer';
|
||||
|
||||
|
||||
@@ -123,6 +123,9 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
@override
|
||||
String get uploadFirstFile => 'Upload your first file';
|
||||
|
||||
@override
|
||||
String get attachments => 'Attachments';
|
||||
|
||||
@override
|
||||
String get knowledgeBaseEmpty => 'Knowledge base is empty';
|
||||
|
||||
|
||||
@@ -123,6 +123,9 @@ class AppLocalizationsFr extends AppLocalizations {
|
||||
@override
|
||||
String get uploadFirstFile => 'Importer votre premier fichier';
|
||||
|
||||
@override
|
||||
String get attachments => 'Attachments';
|
||||
|
||||
@override
|
||||
String get knowledgeBaseEmpty => 'La base de connaissances est vide';
|
||||
|
||||
|
||||
@@ -122,6 +122,9 @@ class AppLocalizationsIt extends AppLocalizations {
|
||||
@override
|
||||
String get uploadFirstFile => 'Carica il tuo primo file';
|
||||
|
||||
@override
|
||||
String get attachments => 'Attachments';
|
||||
|
||||
@override
|
||||
String get knowledgeBaseEmpty => 'La base di conoscenza è vuota';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user