Add strings

This commit is contained in:
ismailgulek
2022-03-18 12:57:47 +03:00
parent 152d2f1501
commit 613fab7926
2 changed files with 15 additions and 0 deletions
+3
View File
@@ -470,6 +470,9 @@ Tap the + to start adding people.";
"threads_empty_tip" = "Tip: Tap a message and use “Thread” to start one.";
"threads_empty_show_all_threads" = "Show all threads";
"message_from_a_thread" = "From a thread";
"threads_notice_title" = "Threads no longer experimental 🎉";
"threads_notice_information" = "All threads created during the experimental period will now be <b>rendered as regular replies</b>.<br/><br/>This will be a one-off transition, as threads are now part of the Matrix specification.";
"threads_notice_done" = "Got it";
"media_type_accessibility_image" = "Image";
"media_type_accessibility_audio" = "Audio";
+12
View File
@@ -7567,6 +7567,18 @@ public class VectorL10n: NSObject {
public static var threadsEmptyTitle: String {
return VectorL10n.tr("Vector", "threads_empty_title")
}
/// Got it
public static var threadsNoticeDone: String {
return VectorL10n.tr("Vector", "threads_notice_done")
}
/// All threads created during the experimental period will now be <b>rendered as regular replies</b>.<br/><br/>This will be a one-off transition, as threads are now part of the Matrix specification.
public static var threadsNoticeInformation: String {
return VectorL10n.tr("Vector", "threads_notice_information")
}
/// Threads no longer experimental 🎉
public static var threadsNoticeTitle: String {
return VectorL10n.tr("Vector", "threads_notice_title")
}
/// Threads
public static var threadsTitle: String {
return VectorL10n.tr("Vector", "threads_title")