simplify 'call' wording (#4263)

This commit is contained in:
biörn
2026-03-10 20:33:26 +01:00
committed by GitHub
parent cd2fc0df0f
commit b81757d579
3 changed files with 16 additions and 6 deletions
@@ -71,9 +71,9 @@ public class CallItemView extends FrameLayout {
} else if (callInfo.state instanceof CallState.Declined) {
title.setText(R.string.declined_call);
} else if (callInfo.hasVideo) {
title.setText(isOutgoing? R.string.outgoing_video_call : R.string.incoming_video_call);
title.setText(R.string.video_call);
} else {
title.setText(isOutgoing? R.string.outgoing_audio_call : R.string.incoming_audio_call);
title.setText(R.string.audio_call);
}
icon.setImageResource(callInfo.hasVideo? R.drawable.ic_videocam_white_24dp : R.drawable.baseline_call_24);
@@ -220,10 +220,10 @@ public class DcHelper {
dcContext.setStockTranslation(220, context.getString(R.string.proxy_enabled));
dcContext.setStockTranslation(221, context.getString(R.string.proxy_enabled_hint));
dcContext.setStockTranslation(230, context.getString(R.string.chat_unencrypted_explanation));
dcContext.setStockTranslation(232, context.getString(R.string.outgoing_audio_call));
dcContext.setStockTranslation(233, context.getString(R.string.outgoing_video_call));
dcContext.setStockTranslation(234, context.getString(R.string.incoming_audio_call));
dcContext.setStockTranslation(235, context.getString(R.string.incoming_video_call));
dcContext.setStockTranslation(232, context.getString(R.string.audio_call));
dcContext.setStockTranslation(233, context.getString(R.string.video_call));
dcContext.setStockTranslation(234, context.getString(R.string.audio_call));
dcContext.setStockTranslation(235, context.getString(R.string.video_call));
dcContext.setStockTranslation(240, context.getString(R.string.chat_description_changed_by_you));
dcContext.setStockTranslation(241, context.getString(R.string.chat_description_changed_by_other));
}