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

Unified Diff: ui/base/strings/app_strings.grd

Issue 7189076: Localize strings, speeds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: typo Created 9 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: ui/base/strings/app_strings.grd
diff --git a/ui/base/strings/app_strings.grd b/ui/base/strings/app_strings.grd
index 0f8d1282f3603462d8bf95a217d490b1309970c8..dfa653e244f966214d4c60d4545d988383d92f21 100644
--- a/ui/base/strings/app_strings.grd
+++ b/ui/base/strings/app_strings.grd
@@ -379,6 +379,44 @@ need to be translated for each locale.-->
<message name="IDS_APP_SHIFT_MODIFIER" desc="Shift key shortcut modifier">
Shift+<ph name="KEY_COMBO_NAME">$1<ex>C</ex></ph>
</message>
+
+ <!-- Byte size units -->
+ <message name="IDS_APP_BYTES" desc="Units tag indicating a quantity of bytes">
+ <ph name="QUANTITY">$1<ex>42</ex></ph> bytes
jungshik at Google 2011/06/22 00:35:01 Hmm.. I'm afraid we need to use plural support her
Avi (use Gerrit) 2011/06/22 16:48:25 I think I was being too clever turning this into t
+ </message>
+ <message name="IDS_APP_KILOBYTES" desc="Units tag indicating a quantity of kilobytes">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> kB
jungshik at Google 2011/06/22 00:35:01 FYI: With floating point numbers, plural gets very
Avi (use Gerrit) 2011/06/22 16:48:25 :)
+ </message>
+ <message name="IDS_APP_MEGABYTES" desc="Units tag indicating a quantity of megabytes">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> MB
+ </message>
+ <message name="IDS_APP_GIGABYTES" desc="Units tag indicating a quantity of gigabytes">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> GB
+ </message>
+ <message name="IDS_APP_TERABYTES" desc="Units tag indicating a quantity of terabytes">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> TB
+ </message>
+ <message name="IDS_APP_PETABYTES" desc="Units tag indicating a quantity of petabytes">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> PB
+ </message>
+ <message name="IDS_APP_BYTES_PER_SECOND" desc="Units tag indicating a speed of bytes/second">
+ <ph name="QUANTITY">$1<ex>42</ex></ph> bytes/s
+ </message>
+ <message name="IDS_APP_KILOBYTES_PER_SECOND" desc="Units tag indicating a speed of kilobytes/second">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> kB/s
+ </message>
+ <message name="IDS_APP_MEGABYTES_PER_SECOND" desc="Units tag indicating a speed of megabytes/second">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> MB/s
+ </message>
+ <message name="IDS_APP_GIGABYTES_PER_SECOND" desc="Units tag indicating a speed of gigabytes/second">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> GB/s
+ </message>
+ <message name="IDS_APP_TERABYTES_PER_SECOND" desc="Units tag indicating a speed of terabytes/second">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> TB/s
+ </message>
+ <message name="IDS_APP_PETABYTES_PER_SECOND" desc="Units tag indicating a speed of petabytes/second">
+ <ph name="QUANTITY">$1<ex>42.0</ex></ph> PB/s
+ </message>
</messages>
</release>
</grit>

Powered by Google App Engine
This is Rietveld 408576698