diff --git a/Riot/Assets/en.lproj/Vector.strings b/Riot/Assets/en.lproj/Vector.strings index 5424d7666..345b83020 100644 --- a/Riot/Assets/en.lproj/Vector.strings +++ b/Riot/Assets/en.lproj/Vector.strings @@ -297,8 +297,10 @@ Tap the + to start adding people."; "directory_cell_title" = "Browse directory"; "directory_cell_description" = "%tu rooms"; "directory_search_results_title" = "Browse directory results"; -"directory_search_results" = "%tu results found for %@"; -"directory_search_results_more_than" = ">%tu results found for %@"; +/* The placeholder %1$tu will be replaced with a number and %2$@ with the user's search terms. */ +"directory_search_results" = "%1$tu results found for %2$@"; +/* The placeholder %1$tu will be replaced with a number and %2$@ with the user's search terms. Note the > at the start indicates "more than 20 results". */ +"directory_search_results_more_than" = ">%1$tu results found for %2$@"; "directory_searching_title" = "Searching directory…"; "directory_search_fail" = "Failed to fetch data"; diff --git a/Riot/Assets/et.lproj/Vector.strings b/Riot/Assets/et.lproj/Vector.strings index 5197efeeb..2c049336d 100644 --- a/Riot/Assets/et.lproj/Vector.strings +++ b/Riot/Assets/et.lproj/Vector.strings @@ -2261,6 +2261,4 @@ "location_sharing_live_loading" = "Reaalajas asukoha laadmine..."; "location_sharing_live_timer_incoming" = "Asukoha jagamine toimib kuni %@"; "live_location_sharing_ended" = "Reaalajas asukoha jagamine on lõppenud"; -"directory_search_results_more_than" = ">%@ kohta leidsin %tu tulemust"; -"directory_search_results" = "%@ kohta leidsin %tu tulemust"; "confirm" = "Kinnita"; diff --git a/Riot/Assets/he.lproj/Localizable.strings b/Riot/Assets/he.lproj/Localizable.strings index 20af9d2ec..825a97f0c 100644 --- a/Riot/Assets/he.lproj/Localizable.strings +++ b/Riot/Assets/he.lproj/Localizable.strings @@ -137,7 +137,6 @@ "ACTION_FROM_USER_IN_ROOM" = "%@: * %@ %@"; /* New action message from a specific person, not referencing a room. */ -"ACTION_FROM_USER" = "%@ in %@: %@"; /* New message from a specific person in a named room. Content included. */ "MSG_FROM_USER_IN_ROOM_WITH_CONTENT" = "%@ ב %@: %@"; diff --git a/Riot/Assets/nl.lproj/Vector.strings b/Riot/Assets/nl.lproj/Vector.strings index 7473da71e..5af742ab8 100644 --- a/Riot/Assets/nl.lproj/Vector.strings +++ b/Riot/Assets/nl.lproj/Vector.strings @@ -2482,5 +2482,4 @@ "location_sharing_live_loading" = "Live locatie wordt geladen..."; "location_sharing_live_timer_incoming" = "Live tot %@"; "live_location_sharing_ended" = "Live locatie beëindigd"; -"settings_integrations_allow_description" = "Gebruik een integratiebeheerder om bots, bruggen, widgets en stickerpakketten te beheren.\n\nIntegratiebeheerders ontvangen configuratiedata en kunnen widgets aanpassen, kameruitnodigingen versturen en bestuursniveaus instellen namens u."; "confirm" = "Bevestigen"; diff --git a/Riot/Assets/pt.lproj/Vector.strings b/Riot/Assets/pt.lproj/Vector.strings index ccf305845..62554aacb 100644 --- a/Riot/Assets/pt.lproj/Vector.strings +++ b/Riot/Assets/pt.lproj/Vector.strings @@ -142,7 +142,6 @@ "space_home_show_all_rooms" = "Mostrar todas as salas"; "space_participants_action_ban" = "Banir deste espaço"; "space_participants_action_remove" = "Remover deste espaço"; -"spaces_coming_soon_detail" = "Esta funcionalidade não está implementada ainda. Pode fazer esta acção através da aplicação Web ou Desktop."; "spaces_invites_coming_soon_title" = "Convites"; "spaces_add_rooms_coming_soon_title" = "Adicionar salas chegando em breve"; "spaces_coming_soon_title" = "Chegando em breve"; @@ -203,7 +202,6 @@ // MARK: - Home -"home_empty_view_title" = "Bem vindo ao %@"; "call_transfer_error_message" = "Transferência de chamada falhou"; "call_transfer_error_title" = "Erro"; "call_transfer_contacts_all" = "Todos"; @@ -408,8 +406,6 @@ "device_verification_self_verify_wait_recover_secrets_additional_information" = "Use esta opção se não consegue aceder a outro dispositivo"; "device_verification_self_verify_wait_recover_secrets_with_passphrase" = "Usar Frase ou Chave de Segurança"; "device_verification_self_verify_wait_recover_secrets_without_passphrase" = "Usar Chave de Segurança"; -"device_verification_self_verify_wait_additional_information" = "Pode também validar esta sessão utilizando a sua frase ou chave de segurança."; -"device_verification_self_verify_wait_information" = "Confirme a sua identidade verificando esta sessão a partir de uma das suas outras sessões, garantindo-lhe o acesso às mensagens encriptadas."; "device_verification_self_verify_wait_new_sign_in_title" = "Verificar este login"; // MARK: Self verification wait diff --git a/Riot/Generated/Strings.swift b/Riot/Generated/Strings.swift index b30de7848..6cf4c26c7 100644 --- a/Riot/Generated/Strings.swift +++ b/Riot/Generated/Strings.swift @@ -1511,11 +1511,11 @@ public class VectorL10n: NSObject { public static var directorySearchFail: String { return VectorL10n.tr("Vector", "directory_search_fail") } - /// %tu results found for %@ + /// %1$tu results found for %2$@ public static func directorySearchResults(_ p1: Int, _ p2: String) -> String { return VectorL10n.tr("Vector", "directory_search_results", p1, p2) } - /// >%tu results found for %@ + /// >%1$tu results found for %2$@ public static func directorySearchResultsMoreThan(_ p1: Int, _ p2: String) -> String { return VectorL10n.tr("Vector", "directory_search_results_more_than", p1, p2) }