Add strings

This commit is contained in:
ismailgulek 2022-04-04 16:52:40 +03:00
parent 867af20b40
commit 87a1740778
No known key found for this signature in database
GPG key ID: E96336D42D9470A9
2 changed files with 25 additions and 0 deletions

View file

@ -479,6 +479,11 @@ Tap the + to start adding people.";
"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";
"threads_beta_title" = "Threads";
"threads_beta_information" = "Keep discussions organised with threads.\n\nThreads help keep your conversations on-topic and easy to track. ";
"threads_beta_information_link" = "Learn more";
"threads_beta_enable" = "Try it out";
"threads_beta_cancel" = "Not now";
"media_type_accessibility_image" = "Image";
"media_type_accessibility_audio" = "Audio";

View file

@ -7591,6 +7591,26 @@ public class VectorL10n: NSObject {
public static var threadsActionMyThreads: String {
return VectorL10n.tr("Vector", "threads_action_my_threads")
}
/// Not now
public static var threadsBetaCancel: String {
return VectorL10n.tr("Vector", "threads_beta_cancel")
}
/// Try it out
public static var threadsBetaEnable: String {
return VectorL10n.tr("Vector", "threads_beta_enable")
}
/// Keep discussions organised with threads.\n\nThreads help keep your conversations on-topic and easy to track.
public static var threadsBetaInformation: String {
return VectorL10n.tr("Vector", "threads_beta_information")
}
/// Learn more
public static var threadsBetaInformationLink: String {
return VectorL10n.tr("Vector", "threads_beta_information_link")
}
/// Threads
public static var threadsBetaTitle: String {
return VectorL10n.tr("Vector", "threads_beta_title")
}
/// Threads help keep your conversations on-topic and easy to track.
public static var threadsEmptyInfoAll: String {
return VectorL10n.tr("Vector", "threads_empty_info_all")