Cleanup & small improvements

This commit is contained in:
Sylvain Berfini 2022-05-03 10:02:24 +02:00
parent 8d762d09e0
commit 3eb8382423
34 changed files with 45 additions and 142 deletions

View file

@ -21,6 +21,4 @@
#-renamesourcefileattribute SourceFile
-keep public class * extends androidx.fragment.app.Fragment { *; }
-keep public class * extends com.bumptech.glide.module.AppGlideModule
-keep class com.bumptech.glide.GeneratedAppGlideModuleImpl
-dontwarn com.google.errorprone.annotations.Immutable

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.3 KiB

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="?attr/backgroundColor"/>
<size android:width="@dimen/contact_avatar_size" android:height="@dimen/contact_avatar_size"/>
</shape>

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="?attr/voipBackgroundColor"/>
<size android:width="35dp" android:height="35dp" />
</shape>

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<solid android:color="?attr/voipParticipantBackgroundColor"/>
<size android:width="35dp" android:height="35dp" />
</shape>

View file

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<size
android:width="5dp"
android:height="5dp" />
<solid android:color="?attr/voipBackgroundColor" />
</shape>

View file

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<size
android:width="5dp"
android:height="5dp" />
<solid android:color="@color/black_color" />
</shape>

View file

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
<stroke android:width="1dp" android:color="?attr/colorPrimary"/>
<corners android:radius="7dp"/>
</shape>

View file

@ -55,7 +55,7 @@
android:backgroundTint="@color/transparent_color"
android:ellipsize="start"
android:hint="@string/dialer_address_bar_hint"
android:inputType="textEmailAddress"
android:inputType="textEmailAddress|textUri"
android:paddingLeft="20dp"
android:paddingRight="5dp"
android:textColorHint="@color/light_grey_color" />

View file

@ -96,7 +96,7 @@
android:backgroundTint="@color/transparent_color"
android:ellipsize="start"
android:hint="@string/dialer_address_bar_hint"
android:inputType="textEmailAddress"
android:inputType="textEmailAddress|textUri"
android:paddingLeft="20dp"
android:paddingRight="5dp"
android:textColorHint="@color/light_grey_color" />

View file

@ -96,7 +96,7 @@
android:backgroundTint="@color/transparent_color"
android:ellipsize="start"
android:hint="@string/dialer_address_bar_hint"
android:inputType="textEmailAddress"
android:inputType="textEmailAddress|textUri"
android:paddingLeft="20dp"
android:paddingRight="5dp"
android:textColorHint="@color/light_grey_color" />

View file

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<import type="android.view.View"/>

View file

@ -281,6 +281,7 @@
android:gravity="top"
android:minLines="3"
android:maxLines="5"
android:inputType="textMultiLine"
style="@style/conference_scheduling_font"
android:background="@drawable/shape_edittext_background"
android:hint="@string/conference_schedule_description_hint"

View file

@ -18,7 +18,8 @@
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:orientation="horizontal">
android:orientation="horizontal"
android:baselineAligned="false">
<RelativeLayout
android:id="@+id/avatar"

View file

@ -56,7 +56,7 @@
android:backgroundTint="@color/transparent_color"
android:ellipsize="start"
android:hint="@string/dialer_address_bar_hint"
android:inputType="textEmailAddress"
android:inputType="textEmailAddress|textUri"
android:paddingLeft="20dp"
android:paddingRight="5dp"
android:textColorHint="@color/light_grey_color" />

View file

@ -95,7 +95,7 @@
android:layout_marginStart="5dp"
android:background="@drawable/button_background_reverse"
android:contentDescription="@{controlsViewModel.isVideoEnabled &amp;&amp; controlsViewModel.isSendingVideo ? @string/content_description_disable_video : @string/content_description_enable_video}"
android:enabled="@{controlsViewModel.isVideoAvailable &amp;&amp; !controlsViewModel.isVideoUpdateInProgress &amp;&amp; conferenceViewModel.conferenceDisplayMode != ConferenceDisplayMode.AUDIO_ONLY}}"
android:enabled="@{controlsViewModel.isVideoAvailable &amp;&amp; !controlsViewModel.isVideoUpdateInProgress &amp;&amp; conferenceViewModel.conferenceDisplayMode != ConferenceDisplayMode.AUDIO_ONLY}"
android:onClick="@{() -> controlsViewModel.toggleVideo()}"
android:padding="5dp"
android:selected="@{controlsViewModel.isVideoEnabled &amp;&amp; controlsViewModel.isSendingVideo}"

View file

@ -13,55 +13,48 @@
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<TextView
style="@style/call_stats_title_font"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|center"
android:layout_marginTop="10dp"
android:text="@string/call_stats_audio"
tools:gravity="center" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">
android:layout_height="wrap_content"
android:layout_gravity="start|center"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingBottom="10dp"
android:orientation="vertical"
app:entries="@{data.audioStats}"
app:layout="@{@layout/voip_call_stat_cell}"/>
<TextView
style="@style/call_stats_title_font"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|center"
android:layout_marginTop="10dp"
android:text="@string/call_stats_audio"
tools:gravity="center" />
<TextView
android:visibility="@{data.isVideoEnabled ? View.VISIBLE : View.GONE, default=gone}"
style="@style/call_stats_title_font"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|center"
android:text="@string/call_stats_video"
tools:gravity="center" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="start|center"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingBottom="10dp"
android:orientation="vertical"
app:entries="@{data.audioStats}"
app:layout="@{@layout/voip_call_stat_cell}"/>
<TextView
android:visibility="@{data.isVideoEnabled ? View.VISIBLE : View.GONE, default=gone}"
style="@style/call_stats_title_font"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|center"
android:text="@string/call_stats_video"
tools:gravity="center" />
<LinearLayout
android:visibility="@{data.isVideoEnabled ? View.VISIBLE : View.GONE, default=gone}"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingBottom="10dp"
app:entries="@{data.videoStats}"
app:layout="@{@layout/voip_call_stat_cell}" />
</LinearLayout>
<LinearLayout
android:visibility="@{data.isVideoEnabled ? View.VISIBLE : View.GONE, default=gone}"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="5dp"
android:paddingRight="5dp"
android:paddingBottom="10dp"
app:entries="@{data.videoStats}"
app:layout="@{@layout/voip_call_stat_cell}" />
</LinearLayout>

View file

@ -2,7 +2,6 @@
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/assistant_nav_graph"
app:startDestination="@id/welcomeFragment">
<fragment

View file

@ -2,7 +2,6 @@
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/contacts_nav_graph"
app:startDestination="@id/emptyContactFragment">
<fragment

View file

@ -2,7 +2,6 @@
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/history_nav_graph"
app:startDestination="@id/emptyCallHistoryFragment">
<fragment

View file

@ -2,7 +2,6 @@
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_nav_graph"
app:startDestination="@id/dialerFragment">
<fragment

View file

@ -2,7 +2,6 @@
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/settings_nav_graph"
app:startDestination="@id/emptySettingsFragment">
<fragment

View file

@ -232,7 +232,6 @@
<string name="chat_message_no_app_found_to_handle_file_mime_type">Keine App für diesen Dateityp vorhanden</string>
<string name="chat_bubble_cant_open_enrypted_file">Öffnen von verschlüsselter Datei in Chat-Bubble nicht möglich</string>
<string name="chat_message_removal_info">Nachricht wird gelöscht</string>
<string name="chat_room_failed_to_create">Erstellen des Chat-Rooms fehlgeschlagen</string>
<string name="transport_udp">UDP</string>
<string name="transport_tcp">TCP</string>
<string name="transport_tls">TLS</string>

View file

@ -129,7 +129,6 @@
<string name="content_description_remove_pending_file_transfer">Eliminar la transferencia de archivos pendiente</string>
<string name="content_description_downloaded_file_transfer">Archivo adjunto</string>
<string name="content_description_delivery_status">Estado de la entrega del mensaje</string>
<string name="content_description_forwarded_message">El mensaje ha sido remitido</string>
<string name="content_description_ephemeral_message">Mensaje es efímero</string>
<string name="content_description_linphone_user">Contacto es un &appName; usuario</string>
<string name="content_description_e2e_encryption_disabled">La encriptación de extremo a extremo está desactivada</string>
@ -561,7 +560,6 @@
<string name="chat_message_removal_info">El mensaje será eliminado</string>
<string name="chat_message_abort_removal">Cancelar</string>
<string name="audio_settings_prefer_bluetooth_devices_title">Dirigir el audio al dispositivo bluetooth si existe</string>
<string name="content_description_replied_message">El mensaje es una respuesta</string>
<string name="content_description_cancel_reply">Cancelar la respuesta</string>
<string name="chat_message_replied">Respuesta</string>
<string name="chat_message_context_menu_reply">Responder</string>
@ -576,6 +574,5 @@
<string name="call_settings_ringtones_title">Tono de llamada</string>
<string name="call_settings_use_telecom_manager_summary">Requiere permisos adicionales</string>
<string name="content_descripton_scroll_to_bottom">Desplazarse al final o al primer mensaje no leído</string>
<string name="audio_settings_prefer_bluetooth_devices_summary">Tendrá prioridad sobre el dispositivo de salida por defecto</string>
<string name="call_settings_use_telecom_manager_title">Mejorar las interacciones con los dispositivos bluetooth</string>
</resources>

View file

@ -261,7 +261,6 @@
<string name="content_description_toggle_recording">Activer ou désactiver l\'enregistrement d\'appel</string>
<string name="content_description_go_back_to_call">Revenir à la vue d\'appel</string>
<string name="content_description_use_speaker">Utiliser une enceinte comme périphérique de sortie</string>
<string name="content_description_forwarded_message">Le message a été transféré</string>
<string name="content_description_e2e_encryption_enabled">Le chiffrement de bout-en-bout est activé</string>
<string name="content_description_show_chat_room_menu">Menu des conversations</string>
<string name="content_description_toggle_participant_devices_list">Afficher ou masquer la liste des appareils</string>
@ -568,7 +567,6 @@
<string name="content_description_pause_voice_recording_playback">Mettre en pause la lecture du message vocal</string>
<string name="content_description_play_voice_recording">Jouer le message vocal</string>
<string name="chat_settings_auto_download_voice_recordings">Télécharger automatiquement les messages vocaux reçus</string>
<string name="content_description_replied_message">Ceci est une réponse</string>
<string name="content_description_stop_voice_recording">Arrêter l\'enregistrement du message vocal</string>
<string name="chat_message_voice_recording_playback_low_volume">Le volume média est faible, pensez à l\'augmenter si vous n\'entendez pas le message</string>
<string name="call_settings_auto_start_recording_title">Enregistrer automatiquement les appels</string>
@ -582,7 +580,6 @@
</plurals>
<string name="content_descripton_scroll_to_bottom">Aller au dernier message reçu ou au premier message non lu</string>
<string name="audio_settings_prefer_bluetooth_devices_title">Acheminer l\'audio vers l\'appareil bluetooth, s\'il existe</string>
<string name="audio_settings_prefer_bluetooth_devices_summary">Il aura la priorité sur le périphérique de sortie par défaut</string>
<string name="call_settings_ringtones_title">Sonnerie</string>
<string name="chat_message_removal_info">Le message va être supprimé</string>
<string name="chat_message_abort_removal">Annuler</string>
@ -663,7 +660,6 @@
<string name="content_description_call_context_menu">Ouvre le menu contextuel d\'appel</string>
<string name="no_conference_call_history">Aucun appel de conférence dans votre historique</string>
<string name="dialer_transfer_succeded">L\'appel est en train d\'être transféré</string>
<string name="chat_room_failed_to_create">Impossible de créer la conversation</string>
<string name="conference_display_mode_active_speaker">Mode intervenant actif</string>
<string name="conference_layout_too_many_participants_for_mosaic">Vous ne pouvez pas modifier la disposition de la conférence car il y a trop de participants</string>
<string name="call_action_transfer_call">Transférer l\'appel</string>
@ -692,7 +688,6 @@
<string name="conference_schedule_create">Créer la conférence</string>
<string name="conference_schedule">Planifier une conférence</string>
<string name="conference_schedule_address_copied_to_clipboard">L\'adresse de la conférence à été copiée dans le presse papier</string>
<string name="conference_schedule_creation_failure">Échec de la création de la conférence !</string>
<string name="conference_schedule_info_not_sent_to_participant">Échec de l\'envoi de l\'invitation de conférence à un participant</string>
<string name="conference_paused_title">Vous êtes actuellement en dehors de la conférence.</string>
<string name="conference_paused_subtitle">Cliquez sur le bouton \"play\" pour la rejoindre.</string>

View file

@ -331,7 +331,6 @@
<string name="content_description_pending_file_transfer">Fájl átvitele függőben van</string>
<string name="content_description_downloaded_file_transfer">Csatolt fájl</string>
<string name="content_description_delivery_status">Üzenet kézbesítési állapota</string>
<string name="content_description_forwarded_message">Az üzenetet továbbítottuk</string>
<string name="content_description_contact_selected">Névjegy kiválasztva</string>
<string name="content_description_show_all_contacts">Az összes névjegy listájának megjelenítése</string>
<string name="content_description_continue_chat_room_creation">Ugrás a csevegőszoba létrehozásának utolsó lépésére</string>
@ -567,7 +566,6 @@
<string name="chat_message_replied">Válasz</string>
<string name="chat_message_context_menu_reply">Válasz</string>
<string name="chat_settings_auto_download_voice_recordings">A bejövő hangfelvételek önműködő letöltése</string>
<string name="content_description_replied_message">Az üzenet válasz</string>
<string name="content_description_cancel_reply">Válasz visszavonása</string>
<string name="content_description_cancel_voice_recording">Hangfelvétel visszavonása</string>
<string name="chat_message_voice_recording_playback_low_volume">A média hangereje alacsony, lehet hogy, szeretné növelni</string>
@ -580,7 +578,6 @@
<item quantity="one">%1$d olvasatlan üzenet</item>
<item quantity="other">%1$d olvasatlan üzenet</item>
</plurals>
<string name="audio_settings_prefer_bluetooth_devices_summary">Ennek elsőbbsége lesz az alapértelmezett kimeneti eszközzel szemben</string>
<string name="content_descripton_scroll_to_bottom">Görgetés legalulra vagy az első olvasatlan üzenetre</string>
<string name="audio_settings_prefer_bluetooth_devices_title">Hang átirányítása a Bluetooth-eszközre (ha van ilyen)</string>
<string name="call_settings_ringtones_title">Csengőhang</string>

View file

@ -231,7 +231,6 @@
<string name="audio_settings_input_device_summary">As alterações entrarão em vigor a partir da próxima chamada</string>
<string name="audio_settings_output_device_title">Dispositivo de áudio de saída padrão</string>
<string name="audio_settings_prefer_bluetooth_devices_title">Enviar áudio para o dispositivo bluetooth, se houver</string>
<string name="audio_settings_prefer_bluetooth_devices_summary">Terá prioridade sobre o dispositivo de saída padrão</string>
<string name="audio_settings_codec_bitrate_title">Limite de taxa de bits do codec</string>
<string name="audio_settings_microphone_gain_title">Ganho de microfone</string>
<string name="audio_settings_microphone_gain_summary">(em decibéis)</string>
@ -503,8 +502,6 @@
<string name="content_description_remove_pending_file_transfer">Remover transferência de ficheiros pendentes</string>
<string name="content_description_downloaded_file_transfer">Ficheiro anexo</string>
<string name="content_description_delivery_status">Estado de entrega de mensagens</string>
<string name="content_description_forwarded_message">A mensagem foi reencaminhada</string>
<string name="content_description_replied_message">A mensagem é uma resposta</string>
<string name="content_description_ephemeral_message">A mensagem é efémera</string>
<string name="content_description_linphone_user">O contacto é um &appName; utilizador</string>
<string name="content_description_contact_selected">O contacto é seleccionado</string>

View file

@ -396,7 +396,6 @@
<string name="content_description_remove_pending_file_transfer">Удалить ожидающую передачу файла</string>
<string name="content_description_downloaded_file_transfer">Прикреплённый файл</string>
<string name="content_description_delivery_status">Статус доставки сообщения</string>
<string name="content_description_replied_message">Сообщение - это ответ</string>
<string name="content_description_forward_message">Переслать сообщение в этой беседе</string>
<string name="content_description_ephemeral_message">Сообщение - это недолговечное сообщение</string>
<string name="content_description_contact_selected">Контакт выбран</string>
@ -564,7 +563,6 @@
<string name="content_description_enable_speaker">Направить звук на динамик</string>
<string name="content_description_show_numpad">Показать цифр. клавиатуру</string>
<string name="content_description_use_bluetooth_headset">Использовать bluetooth-гарнитуру в качестве аудиовыхода</string>
<string name="content_description_forwarded_message">Сообщение было переадресовано</string>
<string name="content_description_linphone_user">Контакт - это &appName;-пользователь</string>
<string name="content_description_show_all_contacts">Показать список всех контактов</string>
<string name="content_description_continue_chat_room_creation">Перейти к завершающему этапу создания чат-комнаты</string>
@ -596,13 +594,11 @@
<string name="dialer_transfer_failed">Не могу перевести звонок</string>
<string name="chat_message_removal_info">Сообщение будет удалено</string>
<string name="chat_message_abort_removal">Прервать</string>
<string name="chat_room_failed_to_create">Не удалось создать комнату чата</string>
<string name="conference_schedule_participants_list">Список участников</string>
<string name="conference_schedule_summary">Информация конференции</string>
<string name="conference_schedule_create">Создать конференцию</string>
<string name="conference_schedule">Запланировать конференцию</string>
<string name="conference_schedule_address_copied_to_clipboard">Адрес конференции скопирован в буфер обмена</string>
<string name="conference_schedule_creation_failure">Не удалось создать конференцию!</string>
<string name="conference_schedule_info_not_sent_to_participant">Не удалось отправить информацию о конференции участнику</string>
<string name="conference_paused_title">В настоящее время вы вне конференции.</string>
<string name="conference_paused_subtitle">Нажмите на кнопку воспроизведения, чтобы присоединиться к ней обратно.</string>
@ -637,7 +633,6 @@
<string name="content_description_toggle_layout_menu">Показать или скрыть меню макета конференции</string>
<string name="content_description_participant_is_paused">Участник на мгновение покинул конференцию</string>
<string name="chat_message_download_already_in_progress">Пожалуйста, дождитесь завершения первой загрузки, прежде чем начинать новую</string>
<string name="audio_settings_prefer_bluetooth_devices_summary">Он будет иметь приоритет над устройством вывода по умолчанию</string>
<string name="conference_organizer">Организатор</string>
<string name="conference_default_title">Удалённая конференция</string>
<string name="call_action_chat">Чат</string>

View file

@ -171,7 +171,6 @@
<string name="missed_calls_notification_body">%d 未接来电</string>
<string name="zrtp_dialog_title">通讯安全</string>
<string name="zrtp_dialog_ok_button_label">接受</string>
<string name="content_description_forwarded_message">信息已转发</string>
<string name="dialog_default_delete_one">你确定要删除这个项目吗?</string>
<string name="dialog_update_available">有可用的更新</string>
<string name="dialog_try_open_file_as_text_title">找不到此类文件的应用</string>
@ -540,7 +539,6 @@
<string name="advanced_settings_disable_fragment_security_summary">允许对敏感视图进行屏幕捕获/录制</string>
<string name="account_settings_transport_dtls">DTLS</string>
<string name="account_settings_apply_prefix_for_calls_summary">如果输入了数字,则将前缀应用于数字</string>
<string name="content_description_replied_message">留言即回复</string>
<string name="content_description_open_app">在应用程序中打开对话而不是气泡</string>
<string name="logs_reset_complete">日志已清除</string>
<string name="chat_message_replied">回复</string>
@ -590,7 +588,6 @@
<string name="about_weblate_translation">帮助我们翻译 &appName;</string>
<string name="assistant_generic_account_warning">某些功能需要 1&appName; 帐户,例如群组消息或临时消息。\n\n当您注册第三方 SIP 帐户时,这些功能会被隐藏。\n\n要在商业项目中启用它请联系我们。</string>
<string name="audio_settings_prefer_bluetooth_devices_title">将音频转到蓝牙设备(如果有)</string>
<string name="audio_settings_prefer_bluetooth_devices_summary">它将优先于默认输出设备</string>
<string name="content_descripton_scroll_to_bottom">滚动到底部或第一条未读消息</string>
<string name="call_settings_ringtones_title">铃声</string>
<string name="chat_message_removal_info">消息将被删除</string>

View file

@ -443,7 +443,6 @@
<string name="content_description_remove_pending_file_transfer">刪除待傳輸文件</string>
<string name="content_description_downloaded_file_transfer">附加檔案</string>
<string name="content_description_delivery_status">訊息傳遞狀態</string>
<string name="content_description_forwarded_message">訊息已轉發</string>
<string name="content_description_ephemeral_message">信息是「閱後即焚」</string>
<string name="content_description_linphone_user">聯絡人是&appName;用戶</string>
<string name="content_description_contact_selected">已選擇聯絡人</string>

View file

@ -28,9 +28,7 @@
<color name="voip_translucent_popup_background">#A64B5964</color>
<color name="voip_translucent_popup_alt_background">#E64B5964</color>
<color name="voip_numpad_background">#E4E4E4</color>
<color name="voip_contact_avatar_background_alt">#AFAFAF</color>
<color name="voip_conference_participant_paused_background">#303030</color>
<color name="voip_drawable_color">#A6B2BC</color>
<color name="voip_dark_color">#252E35</color> <!-- Background -->
<color name="voip_dark_color2">#3F464B</color> <!-- Light gray -->
<color name="voip_dark_color3">#475663</color> <!-- Extra buttons -->

View file

@ -57,7 +57,6 @@
<dimen name="voip_counter_bounce_offset">5dp</dimen>
<dimen name="voip_active_speaker_miniature_size">100dp</dimen>
<dimen name="voip_active_speaker_miniature_margin">10dp</dimen>
<dimen name="voip_call_header_height">60dp</dimen>
<dimen name="voip_conference_active_speaker_miniature_avatar_size">50dp</dimen>
<dimen name="voip_conference_participant_mic_muted_icon_size_grid">30dp</dimen>
<dimen name="voip_conference_participant_mic_muted_icon_size_active_speaker">25dp</dimen>

View file

@ -227,7 +227,6 @@
</plurals>
<string name="chat_message_removal_info">Message will be deleted</string>
<string name="chat_message_abort_removal">Abort</string>
<string name="chat_room_failed_to_create">Failed to create chat room</string>
<string name="chat_message_download_already_in_progress">Please wait for first download to finish before starting a new one</string>
<!-- Recordings -->
@ -257,7 +256,6 @@
<string name="conference_schedule_create">Create conference</string>
<string name="conference_schedule">Schedule conference</string>
<string name="conference_schedule_address_copied_to_clipboard">Conference address copied into clipboard</string>
<string name="conference_schedule_creation_failure">Failed to create conference!</string>
<string name="conference_schedule_info_not_sent_to_participant">Failed to send conference info to a participant</string>
<string name="conference_paused_title">You are currently out of the conference.</string>
<string name="conference_paused_subtitle">Click on play button to join it back.</string>
@ -454,7 +452,6 @@
<string name="audio_settings_output_device_title">Default output audio device</string>
<string name="audio_settings_output_device_summary">Changes will take effect starting next call</string>
<string name="audio_settings_prefer_bluetooth_devices_title">Route audio to the bluetooth device if any</string>
<string name="audio_settings_prefer_bluetooth_devices_summary">It will have priority over the default output device</string>
<string name="audio_settings_codec_bitrate_title">Codec bitrate limit</string>
<string name="audio_settings_microphone_gain_title">Microphone gain</string>
<string name="audio_settings_microphone_gain_summary">(in decibels)</string>
@ -743,8 +740,6 @@
<string name="content_description_remove_pending_file_transfer">Remove pending file transfer</string>
<string name="content_description_downloaded_file_transfer">Attached file</string>
<string name="content_description_delivery_status">Message delivery status</string>
<string name="content_description_forwarded_message">Message has been forwarded</string>
<string name="content_description_replied_message">Message is a reply</string>
<string name="content_description_forward_message">Forward message in this conversation</string>
<string name="content_description_ephemeral_message">Message is ephemeral</string>
<string name="content_description_linphone_user">Contact is a &appName; user</string>

View file

@ -223,24 +223,6 @@
<item name="android:textSize">12sp</item>
</style>
<style name="call_generated_avatar_font" parent="@android:style/TextAppearance.Large">
<item name="android:textColor">@color/white_color</item>
<item name="android:textSize">70sp</item>
<item name="android:textStyle">bold</item>
<item name="android:singleLine">true</item>
<item name="android:ellipsize">none</item>
<item name="autoSizeTextType">uniform</item>
<item name="autoSizeMinTextSize">15sp</item>
<item name="autoSizeMaxTextSize">70sp</item>
<item name="autoSizeStepGranularity">@dimen/settings_granularity_step</item>
</style>
<style name="call_small_generated_avatar_font" parent="@android:style/TextAppearance.Medium">
<item name="android:textColor">@color/white_color</item>
<item name="android:textSize">35sp</item>
<item name="android:textStyle">bold</item>
</style>
<style name="call_context_menu_item_font" parent="@android:style/TextAppearance.Medium">
<item name="android:textColor">@color/white_color</item>
<item name="android:textSize">16sp</item>