Skip to content

Commit

Permalink
Change "Last sync" label to "Last action", more accurate
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed Aug 30, 2024
1 parent 839a207 commit 59bf82e
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/src/main/res/layout/sync_list_item_gdrive.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/sync_last_sync_label"
android:text="@string/sync_last_action_label"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/account_text" />

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/sync_list_item_jserver.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/sync_last_sync_label"
android:text="@string/sync_last_action_label"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/account_text" />

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/sync_list_item_kserver.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="@string/sync_last_sync_label"
android:text="@string/sync_last_action_label"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/account_text" />

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<string name="settings_debuglog_explanation">Esta función registra todo lo que hace la aplicación en un archivo que se puede compartir. El archivo generado contiene información confidencial (por ejemplo, sus aplicaciones instaladas). Compártalo solo con partes de confianza (p. ej., el desarrollador de la aplicación si están solucionando un problema juntos).</string>

<string name="sync_last_update_label">Última actualización</string>
<string name="sync_last_sync_label">Última sincronización</string>
<string name="sync_last_action_label">Última sincronización</string>
<string name="sync_last_never_label">Nunca</string>
<string name="sync_quota_storage_msg">%s gratis (%s / %s)</string>

Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<string name="settings_debuglog_explanation">This feature records everything the app is doing into a shareable file. The generated file contains sensitive information (e.g. your installed applications). Only share it with trusted parties (e.g. the app developer if you are troubleshooting an issue together).</string>

<string name="sync_last_update_label">Last update</string>
<string name="sync_last_sync_label">Last sync</string>
<string name="sync_last_action_label">Last action</string>
<string name="sync_last_never_label">Never</string>
<string name="sync_quota_storage_msg">%s free (%s / %s)</string>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ class KServerAccountRepo @Inject constructor(

val accounts: Flow<Collection<KServer.Credentials>> = _accounts.flow


suspend fun add(acc: KServer.Credentials): Boolean {
log(TAG) { "add(acc=$acc)" }
var added = false
Expand Down

0 comments on commit 59bf82e

Please sign in to comment.