Skip to content

Commit

Permalink
Minor improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-pratik-k committed Jan 22, 2025
1 parent 2e79707 commit 5ea77ac
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions app/assets/locales/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -102,16 +102,17 @@
"successfully_sign_out_from_dropbox": "You have successfully signed out of Dropbox",

"@_UPLOAD_ITEM":{},
"upload_status_waiting": "Upload is in the queue",
"upload_status_success": "Upload completed successfully",
"upload_status_waiting": "Upload is in the queue.",
"upload_status_success": "Upload completed successfully.",
"upload_status_failed": "Upload failed. Please try again.",
"upload_status_cancelled": "Upload was cancelled",
"upload_status_cancelled": "Upload was cancelled.",
"upload_status_paused": "Upload paused.",

"@_DOWNLOAD_ITEM":{},
"download_status_waiting": "Download is in the queue",
"download_status_success": "Download completed successfully",
"download_status_waiting": "Download is in the queue.",
"download_status_success": "Download completed successfully.",
"download_status_failed": "Download failed. Please try again.",
"download_status_cancelled": "Download was cancelled",
"download_status_cancelled": "Download was cancelled.",

"@_TRANSFER":{},
"transfer_screen_title": "Transfer",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class UploadProcessItem extends StatelessWidget {
if (process.status.isWaiting) {
return context.l10n.upload_status_waiting;
} else if (process.status.isPaused) {
return "Upload paused";
return context.l10n.upload_status_paused;
} else if (process.status.isFailed) {
return context.l10n.upload_status_failed;
} else if (process.status.isCompleted) {
Expand Down

0 comments on commit 5ea77ac

Please sign in to comment.