Skip to content
This repository has been archived by the owner on Jul 22, 2024. It is now read-only.

Replace ellipisis unicode for string #3225

Merged
merged 1 commit into from
Apr 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/src/main/res/layout/tray.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
app:autoSizeMaxTextSize="10sp"
app:autoSizeStepGranularity="2sp"
android:background="@drawable/downloads_badge"
android:text="@{(traymodel.downloadsNumber < 100) ? String.valueOf(traymodel.downloadsNumber) : '…'}"
android:text="@{(traymodel.downloadsNumber < 100) ? String.valueOf(traymodel.downloadsNumber) : @string/ellipsis"
visibleGone="@{traymodel.downloadsNumber > 0}"/>
</RelativeLayout>

Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/non_L10n.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
<string name="voice_app_id" translatable="false">fxr</string>
<string name="keyboard_mode_change" translatable="false">ABC</string>
<string name="keyboard_symbol" translatable="false">%&amp;=</string>
<string name="ellipsis" translatable="false">…</string>

<string name="pinyin_spacebar_selection" translatable="false">选定</string>
<string name="pinyin_spacebar_space" translatable="false">空格</string>
Expand Down