23 lines
976 B
C#
23 lines
976 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Text
|
|
{
|
|
public static class AiPromptbausteineTexts
|
|
{
|
|
public static string RootBibNodeTitle => "Bibliothek";
|
|
public static string RootBibNodeDescription => "Hier sehen Sie alle Prompts";
|
|
public static string OwnBibNodeTitle => "Eigene";
|
|
public static string OwnBibNodeDescription => "Hier können Sie Ihre eigenen Prompts verwalten";
|
|
public static string PublicBibNodeTitle => "Geteilt";
|
|
public static string PublicBibNodeDescription => "Hier sehen Sie öffentliche Prompts";
|
|
public static string PublicSharedBibNodeTitle => "von '{0}'";
|
|
public static string PublicSharedBibNodeDescription => "Hier sehen Sie Prompts, welche '{0}' mit Ihnen geteilt hat";
|
|
public static string OwnsoftBibNodeTitle => "BeWoPlaner";
|
|
public static string OwnsoftBibNodeDescription => "Hier können Sie vordefinierte Prompts sehen";
|
|
}
|
|
}
|