make video-chat-invitation mail translatable

This commit is contained in:
B. Petersen 2020-07-30 13:02:12 +02:00
parent ae187f3bff
commit 9cdb750ec3
No known key found for this signature in database
GPG key ID: 3B88E92DEA8E9AFC
2 changed files with 4 additions and 0 deletions

View file

@ -224,6 +224,8 @@
<string name="videochat_instance_placeholder">Your video chat instance</string> <string name="videochat_instance_placeholder">Your video chat instance</string>
<string name="videochat_instance_explain">If a video chat instance is defined, you can start a video chat from each one-to-one chat. Video chats require a compatible app or a compatible browser on both ends.\n\nExamples: https://meet.jit.si/$ROOM or basicwebrtc:https://your-server</string> <string name="videochat_instance_explain">If a video chat instance is defined, you can start a video chat from each one-to-one chat. Video chats require a compatible app or a compatible browser on both ends.\n\nExamples: https://meet.jit.si/$ROOM or basicwebrtc:https://your-server</string>
<string name="videochat_instance_from_qr">Use \"%1$s\" to invite others to video chats?\n\nOnce set, you can start a video chat from each one-to-one chat. This will replace the previous setting for video chats, if any.</string> <string name="videochat_instance_from_qr">Use \"%1$s\" to invite others to video chats?\n\nOnce set, you can start a video chat from each one-to-one chat. This will replace the previous setting for video chats, if any.</string>
<string name="videochat_invitation">Video chat invitation</string>
<string name="videochat_invitation_body">You are invited to a video chat, click %1$s to join.</string>
<!-- get confirmations --> <!-- get confirmations -->
<string name="ask_leave_group">Are you sure you want to leave this group?</string> <string name="ask_leave_group">Are you sure you want to leave this group?</string>

View file

@ -170,6 +170,8 @@ public class ApplicationDcContext extends DcContext {
setStockTranslation(79, context.getString(R.string.systemmsg_ephemeral_timer_day)); setStockTranslation(79, context.getString(R.string.systemmsg_ephemeral_timer_day));
setStockTranslation(80, context.getString(R.string.systemmsg_ephemeral_timer_week)); setStockTranslation(80, context.getString(R.string.systemmsg_ephemeral_timer_week));
setStockTranslation(81, context.getString(R.string.systemmsg_ephemeral_timer_four_weeks)); setStockTranslation(81, context.getString(R.string.systemmsg_ephemeral_timer_four_weeks));
setStockTranslation(82, context.getString(R.string.videochat_invitation));
setStockTranslation(83, context.getString(R.string.videochat_invitation_body));
} }
public File getImexDir() { public File getImexDir() {