diff --git a/Linphone/Localizable.xcstrings b/Linphone/Localizable.xcstrings index 2e7e17fc2..1ae153600 100644 --- a/Linphone/Localizable.xcstrings +++ b/Linphone/Localizable.xcstrings @@ -195,9 +195,6 @@ }, "Active" : { - }, - "Add the contact" : { - }, "Administrateur" : { @@ -2294,9 +2291,38 @@ }, "Dialer" : { + }, + "dialog_call" : { + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Call" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Appeler" + } + } + } }, "dialog_cancel" : { - + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Cancel" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Annuler" + } + } + } }, "Display Name" : { @@ -2476,7 +2502,20 @@ } }, "generic_address_picker_suggestions_list_title" : { - + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suggestions" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Suggestions" + } + } + } }, "Hang up call" : { @@ -3550,9 +3589,6 @@ }, "Scan QR code" : { - }, - "See contact" : { - }, "Select %@ %@" : { "localizations" : { @@ -3697,9 +3733,6 @@ }, "Vidéo" : { - }, - "Video Call" : { - }, "welcome_page_1_message" : { "localizations" : { diff --git a/Linphone/UI/Main/History/Fragments/HistoryContactFragment.swift b/Linphone/UI/Main/History/Fragments/HistoryContactFragment.swift index d2232caf8..bffa647a3 100644 --- a/Linphone/UI/Main/History/Fragments/HistoryContactFragment.swift +++ b/Linphone/UI/Main/History/Fragments/HistoryContactFragment.swift @@ -324,7 +324,7 @@ struct HistoryContactFragment: View { .background(Color.grayMain2c200) .cornerRadius(40) - Text("Video Call") + Text("contact_video_call_action") .default_text_style(styleSize: 14) .frame(minWidth: 80) } diff --git a/Linphone/UI/Main/History/Fragments/HistoryListBottomSheet.swift b/Linphone/UI/Main/History/Fragments/HistoryListBottomSheet.swift index 0c3a0c8ea..065f482bf 100644 --- a/Linphone/UI/Main/History/Fragments/HistoryListBottomSheet.swift +++ b/Linphone/UI/Main/History/Fragments/HistoryListBottomSheet.swift @@ -105,7 +105,7 @@ struct HistoryListBottomSheet: View { .foregroundStyle(Color.grayMain2c500) .frame(width: 25, height: 25, alignment: .leading) .padding(.all, 10) - Text("See contact") + Text("menu_see_existing_contact") .default_text_style(styleSize: 16) Spacer() } else { @@ -115,7 +115,7 @@ struct HistoryListBottomSheet: View { .foregroundStyle(Color.grayMain2c500) .frame(width: 25, height: 25, alignment: .leading) .padding(.all, 10) - Text("Add the contact") + Text("menu_add_address_to_contacts") .default_text_style(styleSize: 16) Spacer() } diff --git a/Linphone/UI/Main/History/Fragments/StartCallFragment.swift b/Linphone/UI/Main/History/Fragments/StartCallFragment.swift index 6f9329112..d259e0ae7 100644 --- a/Linphone/UI/Main/History/Fragments/StartCallFragment.swift +++ b/Linphone/UI/Main/History/Fragments/StartCallFragment.swift @@ -451,7 +451,7 @@ struct StartCallFragment: View { Button(action: { startCallViewModel.createGroupCall() }, label: { - Text("Confirm") + Text("dialog_call") .default_text_style_white_600(styleSize: 20) .frame(height: 35) .frame(maxWidth: .infinity)