Skip to content
Open
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
13 changes: 8 additions & 5 deletions app/src/main/res/layout/synced_folders_item_header.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,19 @@

<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:ellipsize="middle"
android:gravity="center|start"
android:ellipsize="end"
android:gravity="center_vertical|start"
android:textColor="?android:textColorPrimary"
android:textStyle="bold"
tools:text="@string/placeholder_filename"
android:maxLines="1"
app:layout_constraintBottom_toTopOf="@+id/scanIndicatorText"
app:layout_constraintStart_toEndOf="@+id/type" />
app:layout_constraintStart_toEndOf="@+id/type"
app:layout_constraintEnd_toStartOf="@+id/subFolderWarningButton"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintHorizontal_bias="0"
tools:text="@string/placeholder_auto_upload_folder"/>

<TextView
android:id="@+id/scanIndicatorText"
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,7 @@
<string name="placeholder_random_link" translatable="false">https://nextcloud.localhost/nextcloud</string>
<string name="placeholder_random_account" translatable="false">firstname@example.nextcloud.com</string>
<string name="placeholder_date" translatable="false">12. Dec 2020 - 23:10:20</string>
<string name="placeholder_auto_upload_folder" translatable="false">This is a very long folder name as you can see</string>
<string name="placeholder_date_2" translatable="false">10. Dec 2020 - 10:10:10</string>
<string name="placeholder_sso" translatable="false">Grant Nextcloud News access to your Nextcloud account incrediblyLong_username_with_123456789_number@Nextcloud_dummy.com?</string>
<string name="placeholder_example_phone_number" translatable="false">+49 123 456 789 12</string>
Expand Down
Loading