Skip to content

Commit

Permalink
fixed wrong int -> float formatting in torrent notification
Browse files Browse the repository at this point in the history
see #393
  • Loading branch information
LivingWithHippos committed Sep 26, 2024
1 parent 00c18bb commit 69cf5b5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/app/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
<item quantity="other">%d seeders</item>
</plurals>
<string name="seeders_string_format">seeder/s: %s</string>
<string name="torrent_in_progress_format">%1$d%% - %2$.2f MB/s</string>
<string name="torrent_in_progress_format">%1$.2f%% - %2$.2f MB/s</string>
<string name="download_in_progress_format">Descargando - %1$d%%</string>
<string name="download_complete">Descarga completa</string>
<string name="unknown_status">Estado desconocido</string>
Expand Down
2 changes: 1 addition & 1 deletion app/app/src/main/res/values-fr/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
<item quantity="many">%d seeders</item>
</plurals>
<string name="seeders_string_format">seeder/s: %s</string>
<string name="torrent_in_progress_format">%1$d%% - %2$.2f Mo/s</string>
<string name="torrent_in_progress_format">%1$.2f%% - %2$.2f Mo/s</string>
<string name="download_in_progress_format">Téléchargement - %1$d%%</string>
<string name="download_complete">Téléchargement terminé</string>
<string name="unknown_status">État inconnu</string>
Expand Down
2 changes: 1 addition & 1 deletion app/app/src/main/res/values-it/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@
<item quantity="other">%d seeders</item>
</plurals>
<string name="seeders_string_format">seeder/s: %s</string>
<string name="torrent_in_progress_format">%1$d%% - %2$.2f MB/s</string>
<string name="torrent_in_progress_format">%1$.2f%% - %2$.2f MB/s</string>
<string name="download_in_progress_format">Downloading - %1$d%%</string>
<string name="download_complete">Download completato</string>
<string name="unknown_status">Stato sconosciuto</string>
Expand Down
2 changes: 1 addition & 1 deletion app/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@
<item quantity="other">%d seeders</item>
</plurals>
<string name="seeders_string_format">seeder/s: %s</string>
<string name="torrent_in_progress_format">%1$d%% - %2$.2f MB/s</string>
<string name="torrent_in_progress_format">%1$.2f%% - %2$.2f MB/s</string>
<string name="download_in_progress_format">Downloading - %1$d%%</string>
<string name="download_complete">Download complete</string>
<string name="unknown_status">Unknown Status</string>
Expand Down

0 comments on commit 69cf5b5

Please sign in to comment.