Skip to content
Snippets Groups Projects
Commit 298bf792 authored by Kateryna Kostiuk's avatar Kateryna Kostiuk
Browse files

misc: update strings

- group created -> conversation created
- create new group -> new group

Change-Id: I39806a976fa320dc0be3440e99197ac4b59defcd
parent a373f602
No related branches found
No related tags found
No related merge requests found
...@@ -616,8 +616,8 @@ internal enum L10n { ...@@ -616,8 +616,8 @@ internal enum L10n {
internal static let missedOutgoingCall = L10n.tr("Localizable", "generatedMessage.missedOutgoingCall", fallback: "Missed outgoing call") internal static let missedOutgoingCall = L10n.tr("Localizable", "generatedMessage.missedOutgoingCall", fallback: "Missed outgoing call")
/// Outgoing call /// Outgoing call
internal static let outgoingCall = L10n.tr("Localizable", "generatedMessage.outgoingCall", fallback: "Outgoing call") internal static let outgoingCall = L10n.tr("Localizable", "generatedMessage.outgoingCall", fallback: "Outgoing call")
/// Group created /// Conversation created
internal static let swarmCreated = L10n.tr("Localizable", "generatedMessage.swarmCreated", fallback: "Group created") internal static let swarmCreated = L10n.tr("Localizable", "generatedMessage.swarmCreated", fallback: "Conversation created")
/// You joined the conversation /// You joined the conversation
internal static let youJoined = L10n.tr("Localizable", "generatedMessage.youJoined", fallback: "You joined the conversation") internal static let youJoined = L10n.tr("Localizable", "generatedMessage.youJoined", fallback: "You joined the conversation")
} }
...@@ -864,8 +864,8 @@ internal enum L10n { ...@@ -864,8 +864,8 @@ internal enum L10n {
internal static let jamsResults = L10n.tr("Localizable", "smartlist.jamsResults", fallback: "Search result") internal static let jamsResults = L10n.tr("Localizable", "smartlist.jamsResults", fallback: "Search result")
/// New contact /// New contact
internal static let newContact = L10n.tr("Localizable", "smartlist.newContact", fallback: "New contact") internal static let newContact = L10n.tr("Localizable", "smartlist.newContact", fallback: "New contact")
/// Create new group /// New group
internal static let newGroup = L10n.tr("Localizable", "smartlist.newGroup", fallback: "Create new group") internal static let newGroup = L10n.tr("Localizable", "smartlist.newGroup", fallback: "New group")
/// New message /// New message
internal static let newMessage = L10n.tr("Localizable", "smartlist.newMessage", fallback: "New message") internal static let newMessage = L10n.tr("Localizable", "smartlist.newMessage", fallback: "New message")
/// No conversations /// No conversations
...@@ -950,8 +950,6 @@ internal enum L10n { ...@@ -950,8 +950,6 @@ internal enum L10n {
internal enum Swarmcreation { internal enum Swarmcreation {
/// Add description /// Add description
internal static let addDescription = L10n.tr("Localizable", "swarmcreation.addDescription", fallback: "Add description") internal static let addDescription = L10n.tr("Localizable", "swarmcreation.addDescription", fallback: "Add description")
/// Create new group
internal static let newGroup = L10n.tr("Localizable", "swarmcreation.newGroup", fallback: "Create new group")
/// Search for contact… /// Search for contact…
internal static let searchBar = L10n.tr("Localizable", "swarmcreation.searchBar", fallback: "Search for contact…") internal static let searchBar = L10n.tr("Localizable", "swarmcreation.searchBar", fallback: "Search for contact…")
} }
......
...@@ -64,7 +64,6 @@ ...@@ -64,7 +64,6 @@
// SwarmCreation // SwarmCreation
"swarmcreation.searchBar" = "Search for contact…"; "swarmcreation.searchBar" = "Search for contact…";
"swarmcreation.newGroup" = "Create new group";
"swarmcreation.addDescription" = "Add description"; "swarmcreation.addDescription" = "Add description";
// Swarm // Swarm
"swarm.muteConversation" = "Mute conversation"; "swarm.muteConversation" = "Mute conversation";
...@@ -103,7 +102,7 @@ ...@@ -103,7 +102,7 @@
"smartlist.conversations" = "Conversations"; "smartlist.conversations" = "Conversations";
"smartlist.noConversationsFound" = "No conversations match your search"; "smartlist.noConversationsFound" = "No conversations match your search";
"smartlist.newContact" = "New contact"; "smartlist.newContact" = "New contact";
"smartlist.newGroup" = "Create new group"; "smartlist.newGroup" = "New group";
"smartlist.accounts" = "Accounts"; "smartlist.accounts" = "Accounts";
"smartlist.invitationReceived" = "Invitations received"; "smartlist.invitationReceived" = "Invitations received";
"smartlist.noResults" = "No results"; "smartlist.noResults" = "No results";
...@@ -467,7 +466,7 @@ ...@@ -467,7 +466,7 @@
// Generated Message // Generated Message
"generatedMessage.contactAdded" = "Invitation received"; "generatedMessage.contactAdded" = "Invitation received";
"generatedMessage.swarmCreated" = "Group created"; "generatedMessage.swarmCreated" = "Conversation created";
"generatedMessage.invitationReceived" = "was invited to join the conversation"; "generatedMessage.invitationReceived" = "was invited to join the conversation";
"generatedMessage.invitationAccepted" = "joined the conversation"; "generatedMessage.invitationAccepted" = "joined the conversation";
"generatedMessage.youJoined" = "You joined the conversation"; "generatedMessage.youJoined" = "You joined the conversation";
......
...@@ -180,17 +180,6 @@ struct SwarmCreationUI: View { ...@@ -180,17 +180,6 @@ struct SwarmCreationUI: View {
.padding(.horizontal) .padding(.horizontal)
}) })
} }
func createTheSwarmButtonView() -> some View {
return Button(action: {
self.hideKeyboard()
list.createTheSwarm()
}, label: {
Text(L10n.Swarmcreation.newGroup)
.swarmButtonTextStyle()
})
.swarmButtonStyle()
}
} }
struct ImagePicker: UIViewControllerRepresentable { struct ImagePicker: UIViewControllerRepresentable {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment