OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 cr.define('cr.quota', function() { | |
Evan Stade
2011/06/04 02:43:17
again, please add a comment explaining this file
tzik
2011/06/06 10:57:44
Done.
| |
6 return { | |
7 localizedStrings: { | |
8 'textdirection': 'ltr', | |
9 'fontfamily': 'sans-serif', | |
10 'fontsize': '84%', | |
11 | |
12 'label-disk_space': 'Available Disk Space*', | |
13 'label-host': 'Host*', | |
14 'label-origin': 'Origin*', | |
15 'label-type': 'Type*', | |
16 'label-usage': 'Usage*', | |
17 'label-unlimited_usage': 'Unlimited Usage*', | |
18 'label-quota': 'Quota*', | |
19 'label-in_use': 'In Use*', | |
20 'label-used_count': 'Used Count*', | |
21 'label-last_access_time': 'Last Access Time*', | |
22 'label-key': 'Key*', | |
23 'label-value': 'Value*', | |
24 | |
25 'text-title': 'Quota Internals*', | |
26 'text-not_available': 'N/A*', | |
27 'text-true': 'true*', | |
28 'text-false': 'false*' | |
29 } | |
30 }; | |
31 }); | |
OLD | NEW |