Skip to content

Commit

Permalink
sb: tr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliskov committed Jan 14, 2023
1 parent 9b7a521 commit f419dda
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ private void initLocalizedMapping() {
mSegmentLocalizedMapping.put(SponsorSegment.CATEGORY_INTERACTION, R.string.content_block_interaction);
mSegmentLocalizedMapping.put(SponsorSegment.CATEGORY_MUSIC_OFF_TOPIC, R.string.content_block_music_off_topic);
mSegmentLocalizedMapping.put(SponsorSegment.CATEGORY_PREVIEW_RECAP, R.string.content_block_preview_recap);
mSegmentLocalizedMapping.put(SponsorSegment.CATEGORY_HIGHLIGHT, R.string.content_block_highlight);
mSegmentLocalizedMapping.put(SponsorSegment.CATEGORY_POI_HIGHLIGHT, R.string.content_block_highlight);
mSegmentLocalizedMapping.put(SponsorSegment.CATEGORY_FILLER, R.string.content_block_filler);
}

Expand All @@ -73,7 +73,7 @@ private void initColorMapping() {
mSegmentColorMapping.put(SponsorSegment.CATEGORY_INTERACTION, R.color.magenta);
mSegmentColorMapping.put(SponsorSegment.CATEGORY_MUSIC_OFF_TOPIC, R.color.orange_peel);
mSegmentColorMapping.put(SponsorSegment.CATEGORY_PREVIEW_RECAP, R.color.light_blue);
mSegmentColorMapping.put(SponsorSegment.CATEGORY_HIGHLIGHT, R.color.white);
mSegmentColorMapping.put(SponsorSegment.CATEGORY_POI_HIGHLIGHT, R.color.white);
mSegmentColorMapping.put(SponsorSegment.CATEGORY_FILLER, R.color.electric_violet);
}

Expand All @@ -86,7 +86,7 @@ private void initAllCategories() {
mAllCategories.add(SponsorSegment.CATEGORY_SELF_PROMO);
mAllCategories.add(SponsorSegment.CATEGORY_MUSIC_OFF_TOPIC);
mAllCategories.add(SponsorSegment.CATEGORY_PREVIEW_RECAP);
mAllCategories.add(SponsorSegment.CATEGORY_HIGHLIGHT);
mAllCategories.add(SponsorSegment.CATEGORY_POI_HIGHLIGHT);
mAllCategories.add(SponsorSegment.CATEGORY_FILLER);
}

Expand Down
2 changes: 1 addition & 1 deletion common/src/main/res/values-ru/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
<string name="removed_from">Удалено из %s</string>
<string name="video_preset_adaptive">Адаптивный</string>
<string name="content_block_preview_recap">Содержание предыдущего эпизода</string>
<string name="content_block_highlight">Краткое содержание видео</string>
<string name="content_block_highlight">Интересный момент (закладка)</string>
<string name="removed_from_history">Видео удалено из истории</string>
<string name="remove_from_history">Удалить из истории</string>
<string name="upload_date">Дата загрузки</string>
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/res/values-uk/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
<string name="removed_from">Видалено із %s</string>
<string name="video_preset_adaptive">Адаптивний</string>
<string name="content_block_preview_recap">Зміст попереднього епізоду</string>
<string name="content_block_highlight">Короткий зміст відео</string>
<string name="content_block_highlight">Цікавинка (закладка)</string>
<string name="removed_from_history">Відео видалено із історії</string>
<string name="remove_from_history">Видалити із історії</string>
<string name="upload_date">Дата завантаження</string>
Expand Down
2 changes: 1 addition & 1 deletion common/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
<string name="removed_from">Removed from %s</string>
<string name="video_preset_adaptive">Adaptive</string>
<string name="content_block_preview_recap">Preview or recap of the video</string>
<string name="content_block_highlight">Point or highlight of the video</string>
<string name="content_block_highlight">Interesting point (bookmark)</string>
<string name="removed_from_history">Video has been removed from history</string>
<string name="remove_from_history">Remove from history</string>
<string name="upload_date">Upload date</string>
Expand Down

0 comments on commit f419dda

Please sign in to comment.