forked from mirrors/linphone-iphone
Add history translations
This commit is contained in:
parent
3171f0d97d
commit
6ca88dfb0f
4 changed files with 48 additions and 15 deletions
|
|
@ -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" : {
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue