Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Unified Diff: chrome/android/java/strings/android_chrome_strings.grd

Issue 2070713002: Format remaining download time in java code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix findbugs warning Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/android/java/strings/android_chrome_strings.grd
diff --git a/chrome/android/java/strings/android_chrome_strings.grd b/chrome/android/java/strings/android_chrome_strings.grd
index 9756ef738c9f3d6e2345de045b57e0e3103b30c7..4b54f715cbaf77a01948c1e086a605fb4e02cead 100644
--- a/chrome/android/java/strings/android_chrome_strings.grd
+++ b/chrome/android/java/strings/android_chrome_strings.grd
@@ -1637,6 +1637,30 @@ You are signing in with a managed account and giving its administrator control o
<message name="IDS_DOWNLOAD_SUCCEEDED_MESSAGE" desc="Transient message shown when a file download has succeeded." meaning="Android">
<ph name="FILE_NAME">%1$s<ex>http://abc.com/test.pdf</ex></ph> downloaded
</message>
+ <message name="IDS_REMAINING_DURATION_DAYS" desc="Message to show remaining duration in multiple days">
+ <ph name="DAYS">%1$d<ex>2</ex></ph> days left
+ </message>
+ <message name="IDS_REMAINING_DURATION_ONE_DAY" desc="Message to show remaining duration in 1 day">
+ 1 day left
+ </message>
+ <message name="IDS_REMAINING_DURATION_HOURS" desc="Message to show remaining duration in multiple hours">
+ <ph name="HOURS">%1$d<ex>2</ex></ph> hours left
+ </message>
+ <message name="IDS_REMAINING_DURATION_ONE_HOUR" desc="Message to show remaining duration in 1 hour">
+ 1 hour left
+ </message>
+ <message name="IDS_REMAINING_DURATION_MINUTES" desc="Message to show remaining duration in multiple minutes">
+ <ph name="MINUTES">%1$d<ex>2</ex></ph> mins left
+ </message>
+ <message name="IDS_REMAINING_DURATION_ONE_MINUTE" desc="Message to show remaining duration in 1 minute">
+ 1 min left
+ </message>
+ <message name="IDS_REMAINING_DURATION_SECONDS" desc="Message to show remaining duration in multiple seconds">
+ <ph name="SECONDS">%1$d<ex>2</ex></ph> secs left
+ </message>
+ <message name="IDS_REMAINING_DURATION_ONE_SECOND" desc="Message to show remaining duration in 1 second">
+ 1 sec left
+ </message>
<message name="IDS_PROCEED_OMA_DOWNLOAD_MESSAGE" desc="A message within a modal dialog that confirms the user want to download an OMA DRM file.">
Proceed to download the content?
</message>

Powered by Google App Engine
This is Rietveld 408576698