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 // require cr.js |
| 6 |
| 7 /** |
| 8 * LocalizationStrings for test mode chrome://quota-internals/. |
| 9 */ |
| 10 |
| 11 cr.define('cr.quota', function() { |
| 12 return { |
| 13 localizedStrings: { |
| 14 'textdirection': 'ltr', |
| 15 'fontfamily': 'sans-serif', |
| 16 'fontsize': '84%', |
| 17 |
| 18 'text-title': 'Quota Internals*', |
| 19 'text-not_available': 'N/A*', |
| 20 'text-true': 'true*', |
| 21 'text-false': 'false*' |
| 22 } |
| 23 }; |
| 24 }); |
OLD | NEW |